Sorry Lloyd, I just came back to the thread, I misunderstood I checked and linked to a form but then I just created the the form in S_Drive and loaded the code into a page. I also tried a I Frame as suggested. You have to make sure the form works first. Trouble is Wordpress is a CMS system and the posts are in a database.
However I am about to try just creating the form in html. I created this simple form and tried it on a page with the handler and got it working. As the action points to my domain I can handle saving data and send out necessary emails.
ie
<form name="Form1" method="post" action="http://domain/display.php" enctype="multipart/form-data" id="Form1">
<input type="text" id="Editbox1" style="position:absolute;left:68px;top:11px;width:148px;height:20px;border:1px #C0C0C0 solid;font-family:'Courier New';font-size:16px;z-index:0" name="name" value="">
<input type="text" id="Editbox2" style="position:absolute;left:69px;top:43px;width:148px;height:20px;border:1px #C0C0C0 solid;font-family:'Courier New';font-size:16px;z-index:1" name="email" value="" >
<div id="bv_Text1" style="margin:0;padding:0;position:absolute;left:16px;top:14px;width:42px;height:16px;text-align:left;z-index:2;">
<font style="font-size:13px" color="#000000" face="Arial">Name</font></div>
<div id="bv_Text2" style="margin:0;padding:0;position:absolute;left:16px;top:47px;width:45px;height:16px;text-align:left;z-index:3;">
<font style="font-size:13px" color="#000000" face="Arial">Email</font></div>
<textarea name="comment" id="TextArea1" style="position:absolute;left:32px;top:76px;width:170px;height:107px;border:1px #C0C0C0 solid;font-family:'Courier New';font-size:16px;z-index:4" rows="4" cols="13"></textarea>
<input type="submit" id="Button1" name="Button1" value="Submit" style="position:absolute;left:104px;top:202px;width:75px;height:24px;font-family:Arial;font-size:13px;z-index:5">
</form>
</div>
</div>
This is the php handler I tested
<?php
error_reporting(E_ALL & ~E_NOTICE);
// This is the form handler
// Information is passed by the post action in the html page on submit
// The information is placed in variables thus
$name=$_POST['name'];
$email=$_POST['email'];
$comment=$_POST['comment'];
//The values from the form are now in variables
// The data can be saved or emailed or displayed
// this demonstrates the display method see the html part
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Untitled Page</title>
<style type="text/css">
div#container
{
width: 1000px;
height: 600px;
margin-top: 0px;
margin-left: 0px;
text-align: left;
}
</style>
<style type="text/css">
body
{
background-color: #FFFFFF;
color: #000000;
}
</style>
<style type="text/css">
a:hover
{
color: #D20302;
}
</style>
</head>
<body>
<div id="container">
<div id="bv_Text1" style="margin:0;padding:0;position:absolute;left:334px;top:45px;width:331px;height:36px;text-align:left;z-index:0;">
<font style="font-size:16px" color="#000000" face="Arial">This demonstrates the display of submitted data</font></div>
<div id="bv_Text2" style="margin:0;padding:0;position:absolute;left:326px;top:122px;width:73px;height:16px;text-align:left;z-index:1;">
<font style="font-size:13px" color="#000000" face="Arial">Your Name</font></div>
<input type="text" id="Editbox1" style="position:absolute;left:418px;top:118px;width:148px;height:20px;border:1px #C0C0C0 solid;font-family:'Courier New';font-size:16px;z-index:2" name="Name" value=<?php echo $name ?> >
<div id="bv_Text3" style="margin:0;padding:0;position:absolute;left:320px;top:167px;width:77px;height:16px;text-align:left;z-index:3;">
<font style="font-size:13px" color="#000000" face="Arial">Your email</font></div>
<input type="text" id="Editbox2" style="position:absolute;left:420px;top:159px;width:148px;height:20px;border:1px #C0C0C0 solid;font-family:'Courier New';font-size:16px;z-index:4" name="email" value=<?php echo $email ?>>
<textarea name="TextArea1" id="TextArea1" style="position:absolute;left:350px;top:220px;width:244px;height:148px;border:1px #C0C0C0 solid;font-family:'Courier New';font-size:16px;z-index:5" rows="7" cols="21"><?php echo $comment ?></textarea>
<div id="bv_Text4" style="margin:0;padding:0;position:absolute;left:459px;top:195px;width:61px;height:16px;text-align:left;z-index:6;">
<font style="font-size:13px" color="#000000" face="Arial">You Said</font></div>
</div>
</body>
</html
I will help with the handler if you go this route
The Guy from OZ