Posted: Tue Sep 21, 2004 9:48 pm
Sorry, I was just using the Quick reply, Thankyou so much for the link, ill run threw it and if I have questions ill return and ask properally...
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
function definition($buffer)
{
$words = array("Microsoft", "french", "fries");
$words_link = array("<a href=define.php?word=Microsoft>Microsoft</a>", "<a href=define.php?define=french>french</a>", "fries");
return (str_replace($words, $words_link, $buffer));
}Code: Select all
ob_start("definition"); include 'includes/idx_nav.php'; ob_end_flush();