ok i got my mysql database working and i am doing pretty well until i hit one snag
i can hard code into my tables sing php but when i try to transfer info (using html form POST) it actaully enters a row but the info in the row is all blank
here is my html code
HTML Code:
<form method="POST" action="input.php">
Channel Name: <input type="text" name="chname"><br>
Todays URL: <input type="text" name="today"><br>
Yesterdays URL: <input type="text" name="yesterday"><br>
Tomorrow URL: <input type="text" name="tomorrow"><br>
Region Name: <input type="text" name="region"><br>
<input type="Submit">
</form>
and here is my php code that (i left out pass's lol)
PHP Code:
mysql_select_db($database)
or die("Select DB Error: ".mysql_error());
mysql_query ("INSERT INTO tvguide (today, yesterday, tomorrow, chname, region) VALUES ('$today','$yesterday', '$tomorrow', '$chname', '$region')");
mysql_close();
Thaks for any info or help its probably something silly