Hi All,
I've got a file, already written, that gets the $POST variables to do some stuff, eg:
$name = $_POST['name'];
$surname = $_POST['name'];
echo $name, $surname
I have another file that could use the first one to display the same information.
I know that I could change all $POST into $REQUEST and then just call the page using an URL like (url)?name='john'&surname='black'.
but was wondering if there was an easier solution?
thanks
Patrick