I want to call a .PHP file, but I can not.
I have this script:
========
<html>
<header>
<title>Home Page</title>
</header>
<body>
<form method="post">
<fieldset>
<legend>O que deseja fazer?</legend>
<table cellspacing="10">
<tr>
<td>
<input type="submit" value="Cadastrar" onclick="javascript: location.href='pagina.php';" />
</td>
</tr>
</table>
</fieldset>
</form>
</body>
</html>
=========
This script does not work. What do I do wrong?
Thanks for the help.