Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Someone knows what's my wrong code :

$text = str_replace(":-)", "<img src='emoticons/smile.gif'>", $text);

When I try to print the text using PHP echo, it show :

<img src='emoticons/smile.gif'>

All I want to do is to show the image when I input :-)

Thank you.

As per details, this is my code below :

function sendChat() {
$from = $_SESSION['username'];
$to = $_POST['to'];
$message = $_POST['message'];

$_SESSION['openChatBoxes'][$_POST['to']] = date('Y-m-d H:i:s', time());

$messagesan = sanitize($message);

if (!isset($_SESSION['chatHistory'][$_POST['to']])) {
    $_SESSION['chatHistory'][$_POST['to']] = '';
}

$_SESSION['chatHistory'][$_POST['to']] .= <<<EOD
                   {
        "s": "1",
        "f": "{$to}",
        "m": "{$messagesan}"
   },
EOD;


unset($_SESSION['tsChatBoxes'][$_POST['to']]);

$sql = "insert into chat (chat.from,chat.to,message,send) values ('".mysql_real_escape_string($from)."', '".mysql_real_escape_string($to)."','".mysql_real_escape_string($message)."',NOW())";
$query = mysql_query($sql);
echo "1";
exit(0);
}

function sanitize($text) {
$text = htmlspecialchars($text, ENT_QUOTES);
$text = str_replace("\n\r","\n",$text);
$text = str_replace("\r\n","\n",$text);
$text = str_replace("\n","<br>",$text);
$text = str_replace(":-)", "<img src='emoticons/13.gif'>", $text);
return $text;
}
share|improve this question
2  
I'm not sure what the issue is... that looks like your code is working! – ctrahey Jul 11 '12 at 4:25
1  
So what's your problem? – QuickSilver Jul 11 '12 at 4:25
You do mderstand you have your parameters backwards – Cole Johnson Jul 11 '12 at 4:25
1  
@ColeJohnson: No, the parameters are in the right order: php.net/manual/en/function.str-replace.php – Blender Jul 11 '12 at 4:27
1  
Can you post you echo code? It sounds like you are html encoding the output so it is writing it out as text rather then html. – eagle12 Jul 11 '12 at 4:27
show 3 more comments

closed as too localized by Ignacio Vazquez-Abrams, Cyclone, NikiC, GDP, Graviton Jul 14 '12 at 5:05

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer


Edit: do you even have PHP installed locally? PHP scripts need things like EasyPHP installed locally.


Sounds like a bad Content-Type header.

Normally this gets set automatically but you can try enforcing it and make sure you have everything.

<?php header('Content-Type: text/html'); ?>
<html><head></head><body>
    <?php 
         $text = 'OK BOSS :-) ';
         $text = str_replace(':-)', '<img src="emoticons/smile.gif" />', $text);
         echo $text;
    ?>
</body></html>
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.