do i have to declare 'count' somewhere? it doesn't like the beginning of the loop. craps out on that line of code.
Here's what works now. These are frields entered once in the database. I'm thinking now that I might modify this:
<?php
include_once "ez_sql.php";
$result = mysql_query("INSERT INTO weeklyscores (assoc_name, league_name, submitted_by, email, week, game_date)
VALUES ('$assoc_name', '$league_name', '$submitted_by', '$email', '$week', '$game_date')");
This code didn't work. If I could just get this field working I can apply it to the others:
for($count;$count<5)$count++)
{
insert into weeklyscores $_POST["score_a_".$count."" ] if score_a_$count !="" ;
}