Hi Folks,
I have a while loop that fetchs a name from the DB, I am then trying to use the name as a php variable.
I have several variable setup
$business
$title
$body
while($row = mysql_fetch_array($res)) {
echo $row['html'];
$primary = $row['structure'];
// $primary will fetch business, title, body etc
echo $ID = $.''.$primary;
echo $row['html2'];
} ?>
If anyone can see what am doing wrong that would be great
Cheers
Shuka