echo " <form action=$PHP_SELF method=post> <input type=text name=wholesale size=10 value=''> <a href='$PHP_SELF?addit=1'>ADD ME!!!</a> </form> ";
if($addit) { echo "<option>$wholesale</option>"; }
//am I crazy? This just doesent seem to work!
<OPTION> is used inside <SELECT> boxes. What you are doing should work if you remove the <OPTION> tags.
AZ
www.AaronZoller.com
where is your submit? Don't you need to submit the form before you can use the $wholesale variable?
Thats is. I never knew you needed a submit button... THANK YOU!
<?
if($addit) { echo "$wholesale"; }
?>