View Single Post
  #16  
Old 17th April 2016, 22:32
EagleLake EagleLake is offline
Senior Member
 
Join Date: Aug 2011
France
Posts: 31
Default
Quote:
Originally Posted by Pappusen View Post
Fatal error: Cannot redeclare hex2bin() in /home/creation/public_html/backend/functions.php on line 646

Code:
//function hex2bin($hexdata) {
    //$bindata = "";
    //for ($i=0;$i<strlen($hexdata);$i+=2) {
        //$bindata.=chr(hexdec(substr($hexdata,$i,2)));
    //}
    //return $bindata;
//}
Reply With Quote