//get table info
$query = "SELECT * FROM `VORVER`";
if($result = mysql_query($query)) {
while ($row = mysql_fetch_array ($result)) {
//print table info
print "<tr><td align=center height=30>". $row["account_number"] . "</td><td align=center height=30>". $row["consumer_last_name"] . ", ".$row["consumer_first_name"] . "</td><td align=center height=30>";
if($row["VbyMail"]=NULL) {
print "<input type=\"text\" name=\"VbyMail\" style=\"font-family: serif; font-size: 12px;\" size=\"25\"></td>"
//line12
}else{
//end line12
echo $row["VbyMail"] . "</td>";
}
print "<td align=center height=30>";
if($row["VbyFax"]=NULL) {
print "<input type=\"text\" name=\"VbyFax\" style=\"font-family: serif; font-size: 12px;\" size=\"25\"></td>"
}else{
echo $row["VbyFax"] . "</td>";
}
print "<td align=center height=30>";
if($row["Returned"]=NULL) {
print "<input type=\"text\" name=\"Returned\" style=\"font-family: serif; font-size: 12px;\" size=\"25\"></td>"
}else{
echo $row["Returned"] . "</td>";
}
print "</tr>";
}// end while
}// end if
Parse error: syntax error, unexpected '}' in /home/vortab.php on line 12
Anyone see what's wrong here?
lilRachie🙁🙁