cscartman
03-21-2003, 09:21 AM
Im makeing a php chatroom i have it made and all but i want to use javascript or the bbcodes is that even possible?
|
Click to See Complete Forum and Search --> : bbcodes????? cscartman 03-21-2003, 09:21 AM Im makeing a php chatroom i have it made and all but i want to use javascript or the bbcodes is that even possible? pyro 03-21-2003, 09:36 AM What exactly are you taking about? With PHP, you could do a search on the text being submitted to the chat program, and turn things like [ color=blue]text[/color] to <font color="blue">text</font>. Is that what you are looking for? cscartman 03-21-2003, 09:44 AM Im kinda learning the both javascript and php/mysql at the same time and what im looking for when you type : ) it will be a image i found a few scripts to do so but they dont work so i fugured ill try and make my own pyro 03-21-2003, 11:48 AM You will want to do is something like this: $output = str_replace(": )", "<img src=\"smilie.gif\" border=\"0\">", "$thechattext"); Where $output is the new value, and $thechattext is the text that users submit to your script. cscartman 03-21-2003, 02:17 PM I have it working but it shows the : ) by the image hmm webdeveloper.com
Copyright Internet.com Inc., All Rights Reserved. |