Can I Add More Smilies?
It would include messing with the PHP code and I don't recommen that unless you are familiar with PHP. You could simply replace a few existing file images with your own (replace some original ones with new ones).
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
first off let me say that this is an AWESOME script !! So simple it's incredible !
Thank you !
How do I add more smilies ?
I uploaded a few more to the images folder
eg: band.gif
I went to smileys.htm & went into edit mode & added the following:
<a href="javascript:void(0)" onClick="Javascript:insertSmiley(':band:');return false;"><img src="images/band.gif" border="0" alt=""></a>
When I add an entry to the GBook & see the "new" smiley gif(in popup window) I imported but when I sview my post all I see is :band: - No image
Please tell me what I am missing
Thank you in advance
Edit: Im having an issue w/ the gbook not a message board
Thank you !
How do I add more smilies ?
I uploaded a few more to the images folder
eg: band.gif
I went to smileys.htm & went into edit mode & added the following:
<a href="javascript:void(0)" onClick="Javascript:insertSmiley(':band:');return false;"><img src="images/band.gif" border="0" alt=""></a>
When I add an entry to the GBook & see the "new" smiley gif(in popup window) I imported but when I sview my post all I see is :band: - No image
Please tell me what I am missing
Thank you in advance
Edit: Im having an issue w/ the gbook not a message board
HI,
Both in MBoard and GBook use have function "processsmileys" in the main php file (mboard.php or gbook.php). You must add a line there to process your new smileys, for example:
Regards
Both in MBoard and GBook use have function "processsmileys" in the main php file (mboard.php or gbook.php). You must add a line there to process your new smileys, for example:
Code: Select all
$text = str_replace(':band:','<img src="images/icon_band.gif" border="0" alt="">',$text);
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools