Hi Eric
No mate I use some other php services.
What I want to do is:
I may have been very bad at explain it, will try again.
I have a page with templates for selection, each has a radio button or it can be just a button, asking the person to make a selection, as long as it selects the value for that template.
I need it to then send that Templates value (template one say) to the other page which has all the contact information on it, that they can then fill in.
Name
Email
What you want field etc.
And I did find this:
template.php
<html>
<body>
<form action="site2.php" method="post">
Name: <input type="text" name="name">
Email: <input type="text" name="email">
<input type="submit">
</form>
</body>
</html>
contact.php
<html>
<body>
Hello <?php echo $_POST["name"]; ?>!<br>
Your mail is <?php echo $_POST["mail"]; ?>.
</body>
</html>
KISS is the key!