------=_NextPart_000_0004_01CC1334.4B6E51D0
Content-Type: text/plain;
charset="us-ascii"
Content-Transfer-Encoding: 7bit
Please can someone help me.
I have a dynamic table with a form having a link that should be submitted
via <a href="javascript:allaquint('.$rows['userName'].');">
Contact user </a>.
I want to get the user name passed to another page.
This is my code:
<script language="javascript">
function app(name){
document.mio.name.value=name;
document.mio.submit();
}
</script>
</head>
<body>
<table border="0" cellpadding="2" cellspacing="2">
<tr>
<td>Name</td>
</tr>
<?php do { ?>
<tr>
<td><form id="mio" name="mio" action="dataPro.php">
<input name="name" type="hidden" value="<?php echo
$row_yab['loginName']; ?>" /><?php echo $row_yab['loginName']; ?><a
href="javascript:app(<?php echo $row_yab['loginName']; ?>);">Send
Message</a>
</form></td>
</tr>
<?php } while ($row_yab = mysql_fetch_assoc($yab)); ?>
</table>
</body>
</html>
Any help will be appreciated!
------=_NextPart_000_0004_01CC1334.4B6E51D0--
