Hi all,
could some please help me?
I've made a page in php calles test.php
It's connected 2 a database.
I've wrote a script that looks like this;
<table border="1"> <tr> <th>links</th> <th>links</th> </tr>
<?php
include("connect.php");
$result = mysql_query ("SELECT id, microscope FROM information"); while (list
($id, $microscope) = mysql_fetch_row ($result))
{ print (" <tr>\n". " <td><a href=\"test2.php?id=$id&microscope=$microscope\">$microscope</a></td>\n"); }
?>
</tr>
</td>
</table>
I really want 2 know how the php script in my test2.php should look like!
The microscope (only text) that has been choosen should apear on the test2.php
I hope You poeple understand want I mean
Otherwise ask me please cuz i'm stuck at this point
thnx