In response to gamesCool saying i should make a thread about this so somone may help, here it is!
Im having trouble with a realy simple thing!
I have 2 files, 1 with a form in with 1 text box called "name" and the form leads to testCreate.php
In testCreate.php is the script i just created of the top of my head, which is why i think it wont work xD
<?php
if($_POST['submit']){
$name = $_POST['name'];
if ($name == ""){
echo "You did not enter anything into the name feild.";
}
}
?>
Does anyone know whats wrong with it! Its probly somthing realy simple like i forgot a character or somthing.