PDA

View Full Version : HTML Generated page not wanting to parse BBcode


TheComputerGuy
10-23-2005, 04:39 PM
Hiya guys..

I am so far doing somewhat alright getting my html page generated via php every 30 minutes..

However, I want my site www.runaked.com/index.php

Will not read correctly in my html page.

www.runaked.com/index2.php is the current page...

So in my index2.php page I have the following

<?php
$news[$i]["text"] = str_replace("", "<span style='font-weight: bold;'>", $news[$i]["text"]);
$news[$i]["text"] = str_replace("", "</span>", $news[$i]["text"]);

$news[$i]["text"] = str_replace("", "<span style='font-style: italics;'>", $news[$i]["text"]);
$news[$i]["text"] = str_replace("", "</span>", $news[$i]["text"]);

$news[$i]["text"] = str_replace("", "<p align="center">", $news[$i]["text"]);
$news[$i]["text"] = str_replace("", "</p>", $news[$i]["text"]);

$news[$i]["text"] = str_replace("", "<span style='text-decoration: underline;'>", $news[$i]["text"]);
$news[$i]["text"] = str_replace("", "</span>", $news[$i]["text"]);

$news[$i]["text"] = str_replace(""", "<img src=\"", $news[$i]["text"]);
$news[$i]["text"] = str_replace(""", "\">", $news[$i]["text"]);

$news[$i]["text"] = str_replace("[URL]"", "<a href=\"", $news[$i]["text"]);
$news[$i]["text"] = str_replace("["text"]);
$news[$i]["text"] = str_replace("\"]", "\">", $news[$i]["text"]);
$news[$i]["text"] = str_replace(" (\"", "<a href=\"", $news[$i)", "</a>", $news[$i]["text"]);

if(strlen(stripslashes($news[$i]["text"])) > 450) {
$position = strpos(stripslashes($news[$i]["text"]), " ", 450);
if($position)
echo nl2br(substr(stripslashes($news[$i]["text"]), 0, $position))."...";
else
echo nl2br(stripslashes($news[$i]["text"]));
} else {
echo nl2br(stripslashes($news[$i]["text"]));
}
?>

If anyone can help me get my html page to read the bbcode properly that would be awesome!
Thanks guys!