PHP Classes

File: fwphp/glomodul/z_examples/AJAX_form_valid/mcArthur/listing18-1.php

Recommend this page to a friend!
  Classes of Slavko Srakocic   B12 PHP FW   fwphp/glomodul/z_examples/AJAX_form_valid/mcArthur/listing18-1.php   Download  
File: fwphp/glomodul/z_examples/AJAX_form_valid/mcArthur/listing18-1.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: B12 PHP FW
Manage database records with a PDO CRUD interface
Author: By
Last change: Update of fwphp/glomodul/z_examples/AJAX_form_valid/mcArthur/listing18-1.php
Date: 1 year ago
Size: 191 bytes
 

Contents

Class file image Download
$original = array('key'=>'value', 'key2'=>'value2');
$json = json_encode($original);
$restored = json_decode($json, true);

print_r($original);
print "\n" . $json ."\n\n";
print_r($restored);