I am using PHP and MySql and running inside of VS.PHP. I have written the following:
<form action="../register.php" method="post">
<input type="button" value="Submit" id="submit" />
</form>
But when I click, nothing actually happens. Am I not allowed to use relative paths for actions?
You need to change
to
The button input type is mostly used with javascript, but will not submit your form automatically.
EDIT:
Here is a reference on the input button tag