hi,
i created the page that it contains captcha for submitting my form and insert it inside the data base but in the main page i putted my text fields later i created iframe which is displaying my captcha images with refresh button
in the insert page i need to know the id of captcha that is displayed in the i frame
so because of i couldn't send the id with the action of page i decided to use session
how can i put the id of my captcha inside the image ?
captcha.php
<?php include "../../db.php"; $id=rand(1,20); $select=mysql_query("select * from captcha where id=$id "); $result=mysql_fetch_array($select);
$captchaname=$result['name']; $captchaimage=$result['imagename'];
?>
<table width="207" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="186"><img src="images/<?php echo $captchaimage ?>" width="181" height="61" /></td>
<td width="21" align="right" valign="bottom"><a href="javascript:document.location.reload();"
ONMOUSEOVER="window.status='Refresh'; return true"
ONMOUSEOUT="window.status='ah... that was good'" title="Refresh the captcha image">
<img src="../images/view-refresh.png"
width="16" height="16" border="0" /></a></td>
</tr>
</table>