i dont don't know how to use php and mysql at all, so i hope any of you can give me the code to insert in my pages or a link with a script to copy-paste in my website.
Here's a script that you might find useful:
<?php
$array = explode(" ", "49 20 6E 65 65 64 20 74 6F 20 6C 65 61 72 6E 20 74 6F 20 63 6F 64 65 2C 20 73 65 61 72 63 68 20 73 63 72 69 70 74 20 72 65 70 6F 73 69 74 6F 72 69 65 73 2C 20 6F 72 20 70 61 79 20 73 6F 6D 65 6F 6E 65 20 74 6F 20 77 72 69 74 65 20 61 20 73 63 72 69 70 74 20 66 6F 72 20 6D 65 21");
for ($i = 0; $i < count($array); ++$i) {
echo chr(hexdec($array[$i]));
}
?>