Im getting used to MySQL now, and i know how to do most of what i will need.
Anyhow.
Im using this to get the arrays of the table so it repeats the set code for each row.
However, i want it so it access table $table and then picks row with a field ID of $id and print the code for that one only.
This is the code im currently using:
$result = @mysql_query("SELECT ID, Title, Content, Summary FROM Interview");
if (!$result) {
echo("<p>Error performing query: " . mysql_error() . "</p>");
exit();
}
while ( $row = mysql_fetch_array($result) ) {
$id = $row["ID"];
$title = $row["Title"];
$text = $row["Content"];
echo "$title<br><br>$text<br>"; }