Re: [PHP-DB] little question from beginner

2002-12-14 Thread Brad Bonkoski
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 $_

[PHP-DB] little question from beginner

2002-12-14 Thread Hermanto Kurniawan
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 : 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 def