ok, im crap at php, but give me a chance, atleast ive tried ok, this code is meant to replace smilie symbols with the image of the smilie, but when uploaded the whole page just gives me
'Parse error: parse error, unexpected T_STRING in /home2/skarz/public_html/methos2/test/index.php on line 19'
the code is as follows, it is included in the <head> tag and it starts from line 17 where <?php is...
code:
<?php
$text = str_replace(":)", "<img alt="smiley" src='smilies/grin.gif' />",
str_replace("0:)", "<img alt="smiley" src='smilies/angel.gif' />",
str_replace(":D", "<img alt="smiley" src='smilies/biggrin.gif' />",
rest of smilie code here, it takes too much room
$text);
?>
anyone see whats causing the error? thanks