On Sun, Sep 28, 2003 at 01:20:32PM +0200, Karina S wrote:
: 
: I have changed the code, but it doesn't work.
: 
:  if (!(isset($_Post['SubmitForm_x'])))
:   {
:     .......
:     .....
:      <input name="SubmitForm" type="image" src="image.gif" alt="SubmitForm">
:     }
: else
: {
:     .....
: }

1. The superglobal array is $_POST (all caps), not $_Post.

2. Make sure the URL path to your image file is correct, i.e. change
"image.gif" to the relative or absolute URL.

3. The "alt" attribute is technically unneeded.

4. When in doubt:

        print_r($_POST);

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to