Path for contact form file
I have a php contact form that I use with all websites, so ideally I want to avoid using a plug in. The files used include:
• contact.php - A file with php/html write up which displays the form fields.
• contact-form.php - A file that contact.php connects to to send the information.
I've created the equivalent of contact.php as a static page in the Wordpress login.
The code within contact.php which connect to contact-form.php is as follows:
form method="post" action="/contact-form.php"
What I would like to know is how I would connect to this file in the instance of Wordpress - locating files in Wordpress is something which has always confused me...
Thanks