http://www.e-commerce-biz.com/code/relusi-select-menu.txt
Updated: 2007-03-23 ~18:20Z
This is for adding a drop-down menu select box to select the
Category in moderation, rather than having to remember or look up
and enter a category manually.
This modifies the Relusi PHP script "reviewsite.php", lines 43-46.
(Brausch script as of 2007-03-14.)
======================================
// THIS CODE TO BE REPLACED BY THE DROP-DOWN SELECT MENU CODE BELOW - begin
// echo "Site Category:";
// echo " ";
// echo " ";
// echo " ";
// THIS CODE TO BE REPLACED BY THE DROP-DOWN SELECT MENU CODE BELOW - end
// THIS IS THE DROP-DOWN SELECT MENU CODE THAT REPLACES TEXT BOX ABOVE - begin
// This is the category selected when the link was submitted (or last moderated)
$sitecat = trim(getsitecat($linkNum));
echo " ";
echo "Site Category: ";
echo "";
echo "
";
// THIS IS THE DROP-DOWN SELECT MENU CODE THAT REPLACES TEXT BOX ABOVE - end
======================================
end