/    Sign up×
Community /Pin to ProfileBookmark

Sending data of a form to an IFRAME to execute PHP function ?

Hi,

as I said, I’m trying to send a usercode variable via a submit button from my from to an IFRAME, so when the frame reload my PHP fonction is executed and print the returned values in the IFRAME.

This is my form:

[code]
<form name=”formUsrMod” method=”GET” action=”” target=”frmUsrInfo”>
<input name=”usrCode” maxlength=”10″ style=”width:150;height:23″ size=”30″/>
<input type=”button” value=”Add” onClick=”process();”> <input type=”Button” value=”Remove” onclick=”removeItem()”/>
<p>
<select name=”usrLstCode”>
</select>
<input type=”button” value=”Show information” onClick=”document.frames[‘frmUsrInfo’].location.href=’TraitementInfo.php?usrCode=’+document.formUsrMod.usrLstCode.value;”>
</p>
</form>
[/code]

This is my IFRAME:

[code]
<iframe src=”TraitementInfo.php”
name=”frmUsrInfo”
width=”100%” height=”260″
scrolling=”no”
align=”left”>
</iframe>
[/code]

And this is the code of my PHP page called by the frame:

[code]
$usrid = $_GET[“usrCode”];
if (!$conn = pg_connect($cfgConn)) { bugFromPG($conn); }
$infoUsr = readUserInfoFromLDAP($usr_id);

<form name=”IFRAME”>
<fieldset style=”width: 752; height: 203; padding: 2″>
<legend><b>Informations sur l’utilisateur sélectionné</b></legend>&nbsp;
<table border=”1″ cellpadding=”0″ cellspacing=”0″ style=”border-collapse: collapse” bordercolor=”#111111″ width=”95%” id=”AutoNumber13″>
<tr>
<td width=”23%”>&nbsp;Code:</td>
<td width=”177%”>&nbsp;<input type=”text” name=”usrCode” size=”20″></td>
</tr>
<tr>
<td width=”23%”>&nbsp;Prénom:</td>
<td width=”177%”>&nbsp;<input type=”text” name=”usrPrenom” size=”20″ value=”<?echo $infoUsr[1]?>”></td>
</tr>
<tr>
<td width=”23%”>&nbsp;Nom:</td>
<td width=”177%”>&nbsp;<input type=”text” name=”usrNom” size=”20″ value=”<?echo $infoUsr[0]?>”></td>
</tr>
</fieldset></form>
[/code]

Any help would be highly appreciate since I’m stucked on this one for a while now. Thanks everybody

Frank

to post a comment
HTML

0Be the first to comment 😎

×

Success!

Help @Kingpin spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.17,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @nearjob,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,
)...