Hallo all,
how can I show the output of a php script inside a specific <td> when clicked on the link?
example:
<html>
<head>
<title></title>
</head>
<body>
<a onClick="myscript()" href="test.php?a=1&b=345">click here</a>
<table>
<tr>
<td> </td>
<td id="test"></td>
</tr>
</table>
</body>
</html>
When the link is clicked, the output of test.php should be displayed
inside the <td> with the id="test".
Is it possible?
Thank in advance
babil