The pictures are for later. Now I have a table with all the results from my database.
Now I want to convert the Title to a hyperlink. It works, bun when I move the mouse over the name, my cursor won't change into a hand, only when I click, the cursor become a hand. The link to the site is: Link
I used the following code:
<Html>
<Body>
<Table Align="Center" Cellspacing="0" Cellpadding="0" Border="1" Width="75%">
<tr>
<td> <b>Title</b> </td>
<td> <b>Text</b> </td>
<td> <b>Date</b> </td>
</tr>
<?php
include( './MySQL/Connect.php' );
$Selection = "SELECT * FROM Art Where Active='Yes'";
$Query = mysql_query( $Selection, $ConnectionID );
$NumberOfRows = mysql_num_rows( $Query );
while ( $Art = mysql_fetch_object ( $Query ))
{
$ID = $Art->ID;
$Title = $Art->Title;
print "<td> $Art->Title </td>";
print "<td> $Art->Text </td>";
print "<td> $Art->Date </td>";
print "</tr>";
}
?>
</Table>
</Body>
</Html>