Forum Moderators: coopster

Message Too Old, No Replies

php and hex codes

         

electricocean

10:51 pm on Jun 22, 2005 (gmt 0)

10+ Year Member



is there a way to turn a string ino a hex code. Like: 'black' to '#000000'

thanks,
electricocean

dreamcatcher

7:22 am on Jun 23, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



You can use str_replace if you don`t have too many you need to change:

$data = str_replace("black", "#000000", $data);

dc