Posted by samudasu on 02/27/06 08:54
Were you opening my script from your form submission page?
And one more thing i just noticed in your code is this:
$event = $_GET["id"];
$title=$_POST['title'];
$date=$_POST['datetime'];
$desc=$_POST['desc'];
Why do you have $_GET["id"] and not $_POST["id"] ???
Is your from method set to "post" or set to "get"? This could be the
source of all your troubles.
[Back to original message]
|