Jump to content

Chat TextArea or what ?


Panjabel

Recommended Posts

To do that you need to find if they put a smiley in their text, then replace it with the image to the smiley.

 

So say everytime someone put this :)  You would want to replace it with a smiley.

 

<?php

$pattern = "";
$replacement = "<img src=\"path/smiley.jpg\">"; //This would be the path to the smiley pic
$string = "Hello "; //This would be whatever text you wanted to put a smiley in

echo preg_replace($pattern, $replacement, $string);

?>

Link to comment
https://forums.phpfreaks.com/topic/54399-chat-textarea-or-what/#findComment-269206
Share on other sites

No! Of course images are not going to show up in the textarea. You take the raw text, insert it into the database, then perform the code I gave you above to display it to the screen.

 

I'm still confused on exactly what you are trying to do, so if you give me some more detail I can help you more.

 

If you don't want it in the textarea, why don't you just echo the text to the screen using echo or print?

Link to comment
https://forums.phpfreaks.com/topic/54399-chat-textarea-or-what/#findComment-269214
Share on other sites

clicky clicky

 

http://dennisbillings.com/smiley.php

 

What you'll need to understand

 

http://weblogtoolscollection.com/regex/regex.php - regular expressions

 

http://w3schools.com/html/default.asp - HTML

 

http://php.net/ - PHP syntax and predefined functions

 

Patience....

 


<?php

IF(ISSET($_REQUEST['submit'])){

$string= $_REQUEST['text'];


$pattern = "/:\)/";
$replacement = "<img src=\"images/tongue.gif\">"; //This would be the path to the smiley pic

echo preg_replace($pattern, $replacement, $string);

}

?>

<form method="post" action="<?PHP $_SERVER['PHP_SELF']; ?>">
<textarea name="text"></textarea><br />
<input type="submit" name="submit" value="Submit">
</form>

 

Link to comment
https://forums.phpfreaks.com/topic/54399-chat-textarea-or-what/#findComment-269676
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.