Ok i have a question for you lot.
i want to have a test box with a continue button and when somone enters there mailbox name it opens an iframe to there outlook webaccess mailbox.
ive done the easy bit of creating the text box and creating the iframe but i dont know how to get it to take the data from the text box and add it to the end of the url.
Here is the bodge of what ive done atm please help.
<?php
//trying to have a text box the user enters there mail box name
//and when they click the continue button it opens there outlook web access
//mailbox in the iframe window
if (!stristr($_SERVER['SCRIPT_NAME'], "modules.php")) {
die ("You can't access this file directly...");
}
$index = 0;
require_once("mainfile.php");
$module_name = basename(dirname(__FILE__));
get_lang($module_name);
include("header.php");
title(_EMAIL);
OpenTable();
echo "<table align='center' cellpadding='3' cellspacing='3' border='0'>";
//input text box
echo "<form action='modules.php?name=$module_name' method='post'>";
echo "<tr><td bgcolor='$bgcolor2'>"._EMAILADD.":</td><td bgcolor='$bgcolor1'><input type='text' name='email' size='40' maxlength='255'> <font class='tiny'>"._REQUIRED."</font></td></tr>";
//Submit button
echo "<input type='hidden' name='submit' value='iframe1'>";
echo "<tr><td align='right' bgcolor='$bgcolor1' colspan='2'><input type='submit' value='"._YA_CONTINUE."'></td></tr>";
echo "</form></table><br>";
//target iframe for it to send to
?>
<table align='center' cellpadding='1' cellspacing='1' border='0'>
<iframe SRC="http://10.0.0.3/exchange" width="700" height="600" id="iframe1" marginheight="0" frameborder="0";"></td></tr>
<?php
CloseTable();
include("footer.php");
?>
as you can see im a n00b so go easy on me please.