Ok this is what I have after I created the table. I just copy & pasted the table info and created them but when I view the page, it cannot execute the query??
<?
#**********************************************************************************
$connection = mysql_connect("","","")
or die("Couldn't make connection.");
$db = mysql_select_db("***", $connection)
or die("Couldn't select database.");
#*************************************************************************************
$Showsql = "SELECT distinct Month FROM craftshows LEFT JOIN convMonth ON test2.month=convMonth.monthName ORDER BY monthNumber ASC
";
$Showsql_result = mysql_query($Showsql,$connection)
or die("Couldn't execute query.");
while ($row = mysql_fetch_array($Showsql_result)) {
$Month = $row["Month"];
$Shows.= "<OPTION value=\"$Month\">$Month</OPTION>";
}
?>
<form method="GET" action="displayshows.html" name="Month">
<SELECT name="Shows" style="color : #ffffff; background-color : #A59ACF; font : bold; letter-spacing : 0px" size="1">
<option value=\"\">Select a Show Month</option>";
<? echo "$Shows"; ?>
</SELECT> <input type="submit" name="Submit" value="Go" style="color : #ffffff; background-color : #A59ACF;
font : bold; letter-spacing : 1px">
</form>