sorry to be such a pest....this is what I have so far and I am getting an error...
<head>
<title>Calendar Input Form</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<?php
$Host="localhost";
$User="click";
$Password="*******";
$DBName="clickdb";
$TableName="sampledaycare_classes";
$Link=mysql_connect ($Host, $User, $Password);
$query_st = "SELECT * FROM sampledaycare_classes";
$query_rs = mysql_query($query_st);
echo "<SELECT NAME=selectbox>\n<option value=''>Select One\n";
while($Row = mysql_fetch_array($query_rs))
{
echo "<option value='".$Row[value]."'>".$Row[displaytext]."\n";
}
echo "</SELECT>";
mysql_close ($Link);
?>
</body>
The error is as follows: Warning: Supplied argument is not a valid MySQL result resource in ..... on line 21 which is the while looping line....
Thanks again!