can anyone see any errors its nor running for me keep getting errors and a bunch of other stuff if someone can point me in the right direction it would be appreciated alot
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");
$id=$_POST['id'];
$sql="SELECT MAX(a_id) AS Maxa_id FROM $tbl_name WHERE question_id='$id'";
$result=mysql_query($sql);
$rows=mysql_fetch_array($result);
if ($rows) {
$Max_id = $rows['Maxa_id']+1;
}
else {
$Max_id = 1;
}
$a_name=$_POST['a_name'];
$a_answer=$_POST['a_answer'];
$datetime=date("d/m/y H:i:s");