now other issue, I want to learn how to get my echoes into a table that needs t be created at top of page left side.
here is the code.
<?php
$numbers = strip_tags($_POST['pickanumber']);
$submit = $_POST['pickanumber'];
if($submit){
if (isset($_POST['pickanumber'])){
}
else{
}
if ($numbers>25||$numbers<1)
{
echo "<p>Enter a number between 1 and 25</p> ";
}
else{
}
if ($numbers==25)
{
echo "<font color='red'>"."<p>Congrats, Your a Winner!!!!</p>"."</font>";
}
else
{
echo "<p>Try Again,"."<font color='red'>You Lose!</font></p>";
}
}
?>
<html>
<form class="" action="guessanumber.php" method="POST">
<H2>Guess The Number</H2>
<h4>Guess The Number!</h4>
<br />
<div id="" style="margin-top:20px;">Pick a Number 1-25:</div><div id="" style="margin-top:20px;"><input name='pickanumber' class="" title="pickanumber" id='pickanumber' value="" size="20" maxlength="20" /></div>
<input type="submit" name="submit" value='pickanumber' class="pickanumber" />
</html>
As of now page jumps all over the place have hitting submitalso could you go over my code I did have some notice


