Should I paste a complete html form code like
<form action="formscript.php" method="post">
<input name="Tel" type="text" id="Tel">
<input name="Address" type="text" id="Address">
<input name="Name" type="text" id="Name">
<input name="Email" type="text" id="Email">
<input type="submit" name="Submit" value="Send">
</form>
or just put form data , like
<input name="Tel" type="text" id="Tel">
<input name="Address" type="text" id="Address">
<input name="Name" type="text" id="Name">
<input name="Email" type="text" id="Email">
<input type="submit" name="Submit" value="Send">
without <form></form> tag bounded the form elements
<form action="formscript.php" method="post">
<input name="Tel" type="text" id="Tel">
<input name="Address" type="text" id="Address">
<input name="Name" type="text" id="Name">
<input name="Email" type="text" id="Email">
<input type="submit" name="Submit" value="Send">
</form>
or just put form data , like
<input name="Tel" type="text" id="Tel">
<input name="Address" type="text" id="Address">
<input name="Name" type="text" id="Name">
<input name="Email" type="text" id="Email">
<input type="submit" name="Submit" value="Send">
without <form></form> tag bounded the form elements
Just the form data
This topic is locked and no more replies can be posted.