Seems like a simple question, I'm building a simple contact form plugin for wordpress. I have the following line in a file called contact.php - this file is what creates the html elements for the form:
<form method="post" action="process.php" name="contactform" id="contactform">
However, process.php is not found (as it links to here). How do I link to that file using a php command, something like this perhaps:
<form method="post" action="<?php plugins_url(); ?>process.php"
name="contactform" id="contactform">
The above doesn't work, but it's the kind of solution I'm looking for.