I'm so used to odbc that I can't get this mysql to work - I can't figure out how to execute this INSERT statement so that it gets added to my database - any ideas? Thanks!
{
$dte = time();
$db = mysql_connect("localhost","","");
mysql_select_db("database_com",$db);
$sql = mysql_query("INSERT INTO getprayer (name,spousename,city,state,country,1,2,3,4,5) VALUES ('$name','$spousename','$city','$state','$country','$1','$2','$3','$4','$5'",$db);
}