Here's my issue, I have just finished my website and i have a form on it that i send to myself via Email, everything is working fine except i want to make things easier for me and my team since i have to type all the date received from the forms to my local server, I have tried using php but i have no clue how to acces my local server from the website. My question is : How do i send the form directly to my server ?
PS: I do not need any specific code , i just need someone to put me on the right track
You can put a submit button in your form and put url of your local server in the form eg.
<form action="url" method=POST>
.
.
.
<input type="submit" value="SendAllDATA"/>
</form>
or you can submit your form by using javascript
document.getElementById("yourFormId").submit();