Hi guys,
I have a php plugin that I use for smilies, it uses array to pinpoint what code is used for each smile image for example:
$people = array (
':)' => 'smile.png',
':laughing:' => 'laughing.png',
':blush:' => 'blush.png',
':d' => 'smiley.png',
now, I'm having trouble adding two types of code for each image without duplicating the smile image in the plugin, I have tried to use:
':d',':D' => smiley.png,
but I had no success because it seem to work but it mess up my plugin...
Any ideas? Can someone help me on this please?