jtjohnston wrote: >I can't get this to work: >if(isset($submit)) > >with: > ><input type=\"image\" name=\"submit\" value=\"submit\" >src=\"next.gif\" border=\"0\" align=\"ABSCENTER\"> > >I'm not coding correctly? > If you are testing for $submit a work around is to have a hidden field in your form that looks like this:
<input type="hidden" name="submit" value="yes"> That way any tests for $submit will come up as true once the form has been submitted, but you can still use an image for the actual button. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php