Code:
$query = "SELECT subject FROM $uber_table";
$result = mysql_fetch_array(mysql_query($query));
Retrieve($result);
// Retrieve This Data and put into link form.
//
function Retrieve($array)
{
foreach($array as $value)
Print("$value <br>");
}
Just trying to get this to print out all the items under the subject column and make them into links that will open up the rest of the file.
Problem #1
It prints out: (First being the first subject entered)
First
First
Problem #2
Making these into links that will open a new page displaying more info about the subject.
Thanks ^_-