Well, I would look at 2 possible problems: 1). Submit is an HTML input type, and I would try to avoid using it as a script variable just to make sure avoid confusion. 2). You may not have register_globals turn 'on' in your php.ini file. So, if the form method is POST, try: $_POST['submit']. Or $_SERVER['submit'] HTH -Brad Hermanto Kurniawan wrote: > Hi, > I am having trouble with using PHP for submitting a form. > > I've defined all the inputs for the form. and the html for the button is > like this : > <input type="submit" name="submit" value="send"> > > when I wanted to process the data of the form using : > if($submit){ > ...//my script here > } > > the browser tell the notice that variable submit isn't defined.. > > why??? thanks for answering > > _________________________________________________________________ > The new MSN 8: advanced junk mail protection and 2 months FREE* > http://join.msn.com/?page=features/junkmail > > -- > PHP Database Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php