onder staande foutmelding krijg ik na het uitvoer van index.html en check.php
Parse error: parse error, unexpected '(' in /srv/www/htdocs/etrack/check.php on line 14
index.html
<form name=searchFormMaker method=post action="check.php">
<table>
<tr>
<td><b> Inlognaam </b></td>
<td><input type="text" name="user_inlognaam"></td>
</tr>
<tr>
<td><b> Password </b></td>
<td><input type="password" name="user_passwd"></td>
</tr>
</table>
<br>
<input type=submit name=Submit value="Enter">
<input type=reset name=Submit2 value="Reset">
</form>
<?
include("foot.php");
?>
check.php
<?
include("pda/php/head.php");
include("pda/php/datacon.php");
?>
<?
$querysearch = "select * from users where user_inlognaam='$user_inlognaam' and user_passwd='$user_passwd'";
$resultsearch = MYSQL_QUERY($querysearch);
$numbersearch = mysql_Numrows($resultsearch);
if ($numbersearch>0
("Location: /pda/index.html");
if ($numbersearch>0
("Location: /beheer/index.php");
?>
<?
include("pda/php/foot.php");
?>
de bedoeling is om de gebruiker naar aanleiding van het getal in user_level naar een pagina dor te sturen
467 views