For forms, I usually have something similar to the following
<form action="?linkadd_results" method="post">
However, this makes the URL a little messy.
I was wondering if I could use the following code
<form action="$_SERVER["PHP_SELF"]" method="post">
The only problem here being, how do I associate the form with the function made to process the form (linkadd_results), where the function is held in another file called link_functions.php
That function is in the following format
function linkadd_results()
{
//Blah blah do stuff
}