Welcome Guest, Not a member yet? Register   Sign In
jQuery Poll & PHP in codeigniter - help needed.
#9

[eluser]TheFuzzy0ne[/eluser]
Please see http://php.net/json_encode and http://php.net/json_decode. On this page you will find some alternatives that should work with PHP 4 if PEAR is installed:

Code:
<?php
if ( !function_exists('json_decode') ){
    function json_decode($content, $assoc=false){
                require_once 'Services/JSON.php';
                if ( $assoc ){
                    $json = new Services_JSON(SERVICES_JSON_LOOSE_TYPE);
        } else {
                    $json = new Services_JSON;
                }
        return $json->decode($content);
    }
}

if ( !function_exists('json_encode') ){
    function json_encode($content){
                require_once 'Services/JSON.php';
                $json = new Services_JSON;
                
        return $json->encode($content);
    }
}
?>


Messages In This Thread
jQuery Poll & PHP in codeigniter - help needed. - by El Forum - 04-15-2009, 03:35 AM
jQuery Poll & PHP in codeigniter - help needed. - by El Forum - 04-15-2009, 03:54 AM
jQuery Poll & PHP in codeigniter - help needed. - by El Forum - 04-15-2009, 03:58 AM
jQuery Poll & PHP in codeigniter - help needed. - by El Forum - 04-15-2009, 04:08 AM
jQuery Poll & PHP in codeigniter - help needed. - by El Forum - 04-15-2009, 04:11 AM
jQuery Poll & PHP in codeigniter - help needed. - by El Forum - 04-15-2009, 04:19 AM
jQuery Poll & PHP in codeigniter - help needed. - by El Forum - 04-15-2009, 04:30 AM
jQuery Poll & PHP in codeigniter - help needed. - by El Forum - 04-15-2009, 04:31 AM
jQuery Poll & PHP in codeigniter - help needed. - by El Forum - 04-15-2009, 04:43 AM
jQuery Poll & PHP in codeigniter - help needed. - by El Forum - 04-15-2009, 06:40 AM
jQuery Poll & PHP in codeigniter - help needed. - by El Forum - 04-15-2009, 06:50 AM
jQuery Poll & PHP in codeigniter - help needed. - by El Forum - 04-15-2009, 06:59 AM
jQuery Poll & PHP in codeigniter - help needed. - by El Forum - 04-15-2009, 07:00 AM
jQuery Poll & PHP in codeigniter - help needed. - by El Forum - 04-15-2009, 07:04 AM
jQuery Poll & PHP in codeigniter - help needed. - by El Forum - 04-15-2009, 07:23 AM
jQuery Poll & PHP in codeigniter - help needed. - by El Forum - 04-15-2009, 07:26 AM
jQuery Poll & PHP in codeigniter - help needed. - by El Forum - 04-15-2009, 07:30 AM
jQuery Poll & PHP in codeigniter - help needed. - by El Forum - 04-15-2009, 07:47 AM
jQuery Poll & PHP in codeigniter - help needed. - by El Forum - 04-15-2009, 07:48 AM
jQuery Poll & PHP in codeigniter - help needed. - by El Forum - 04-15-2009, 07:53 AM



Theme © iAndrew 2016 - Forum software by © MyBB