Okay, it's definitely a PHP issue. Why I didn't think to 'hardcode' an entry to the database to check in the first place I don't know! Following your examples aboves, and entering it to the database via the Command Prompt window works perfectly fine. When trying to add from my PHP page, it still does not want to 'play ball'!
I have tried leaving the fields blank, as well as entering 0, but neither way seems to get what I want. I will eventually be adding more rides to the database, so hardcoding it into the database will be extremely difficult and time consuming!!!!
This is how the add_rides.php page stands at the moment:
<html><head>
<title>adding Ride Count</title></head>
<body>
<?php
$self = $_SERVER['PHP_SELF'];
$rides_date = $_POST['rides_date'];
$rides_one = $_POST['rides_one'];
$rides_two = $_POST['rides_two'];
$rides_three = $_POST['rides_three'];
$rides_four = $_POST['rides_four'];
$rides_five = $_POST['rides_five'];
?>
<form action="<?php echo( $self ); ?>" method="post">
Date (1983-06-16): <input type="text" name="rides_date" size="15"><p>
PARK ONE<br>
Ride One: <input type="text" name="rides_one" size="5"><br>
Ride Two: <input type="text" name="rides_two" size="5"><br>
Ride Three: <input type="text" name="rides_three" size="5"><p>
PARK TWO<br>
Ride Four: <input type="text" name="rides_four" size="5"><br>
Ride Five: <input type="text" name="rides_five" size="5"><p>
<input type="submit" value="Submit">
</form>
<?php
if( $rides_date and $rides_one and $rides_two and $rides_three and $rides_four and $rides_five )
{
$conn=@mysql_connect( "localhost", "root", "######" ) or die( "Err:Conn" );
#select the specified database
$rs = @mysql_select_db( "themepark", $conn) or die( "Err:Db" );
#create the query
$sql = "insert into rides ( rides_date, rides_one, rides_two, rides_three, rides_four, rides_five ) values ( \"$rides_date\", \"$rides_one\", \"$rides_two\", \"$rides_three\", \"$rides_four\", \"$rides_five\" )";
#execute query
$rs = mysql_query( $sql, $conn );
if( $rs )
{
echo( "Record added:$rides_date, $rides_one, $rides_two, $rides_three, $rides_four, $rides_five" );
}
}
?>
</body></html>