okay this must be something very simple, but I am just starting to learn php and can't figure out why this:
<?php
if (!$table_name) || (!$num_fields)) {
header("location: .../admin/createtable.html");
exit;
}
?>
produces this error:
Parse error: parse error, unexpected T_BOOLEAN_OR in /fielddef.php on line 2
<?php
if (!$table_name) || (!$num_fields)) {
header("location: .../admin/createtable.html");
exit;
}
?>
produces this error:
Parse error: parse error, unexpected T_BOOLEAN_OR in /fielddef.php on line 2