I have a form in my web page and I want to submit form data automatically when user open this on his web browser. This form contain fixed data from my side and use didnt have to add any data. So here is my form code...
<form action="data.php" method="post" enctype="plain" id="theForm">
<input type="text" name="Visitor" value="FIXED-DATA-FROm-ME" />
<input type="submit" value="Send" />
</form>
How to do this? Please share some simple steps or light coding...