ok thanks
one more question
Code:
while ($row = mysql_fetch_array($result)) {
$date = $row["date"];
$url = $row["url"];
$title = $row["title"];
$descrip = $row["descrip"];
$format = str_replace("<InsertTitle>", "$title", $format);
$format = str_replace("<InsertDate>", "$date", $format);
$format = str_replace("<InsertUrl>", "$url", $format);
$format = str_replace("<InsertDescription>", "$descrip", $format);
$body = $format;
$title = "Links";
}
Hmmmmmmm. I'm stumped. I'm using a custom made template based ffa script and it stores everything it needs in the $body variable which is displayed later on. How can I get each generated link format ($format) into the $body var so I can display all of the links?
Maybe an array?
I'm not sure.
Bookmarks