02-27-2008, 12:25 PM
|
#11 (permalink)
|
|
The Acquainted
Join Date: Feb 2008
Posts: 119
Thanks: 17
|
or just add:
PHP Code:
if (!isset($_POST['submit'])) { //show form } else { //insert }
and you will need to name your submit button as submit:
<input type="submit" name="submit">
|
|
|
|