I really feel like a NOOB. Here is my really really basic code trying to get something more complex to work. Can anyone help me figure out why this isn't working???
<?php
if(isset($submit)){
echo "hi";
}
?>
<div align="center">
<p align="center" class="text"><strong>
So you have had one of those Ohh Bad days? Just join us and tell everyone about it! </strong>
<form action="testing.php" method="post">
<p align="left"><span class="text">E-Mail Address:</span> <input name="email" type="text" class="inputboxes" value="E-Mail Address">
</p>
<p align="left"> <span class="text">Password:</span>
<input name="password" type="password" class="inputboxes">
<hr>
<div align="left">
<p><span class="text">Name:</span> <input name="name" type="text" class="inputboxes">
<br>
<span class="text">Location:</span>
<input name="location" type="text" class="inputboxes">
</p>
</p>
<p align="center">
<input name="submit" type="submit" class="submitbutton" value="Create Account">
</p>
</div>
</form>
What the problem is, is that the if(isset($submit)) seems to not be working. I have the file named testing.php and I have done this a hundred times on other servers but now I made myself a testing one and it isn't working quite as well. If you can help that would be all appreciated. Thank you!
Chad