I wanna to use post function of jQuery to send data to php code,the php code echo json.
$array = array(
'error_no' => 0;
'error' => 'error number 0'
);
echo (json_encode($array));
that is my php code,now how should I get post somethings to this page and access error_no element in javascript var???