... please wait while unserializing php string ... [len: 488]
Please contact me if your browser doesn't pass this test page.
[visit www.3site.it if you don't know my email address]
<?php // PHP used code
class MyClass {
	var $pippo = "test";
}
class Object {}
header("Content-type: text/html; charset=UTF-8");
$test1 = utf8_encode(str_repeat('";', 5).'ÎÑTËRÑÅTÌÔñÁL'.str_repeat('";', 5));
$test2 = array();
for($a = 0; $a < 2; $a++)
	array_push(
		$test2, array(
				"class"=>new MyClass(),
				1,
				.2,
				true,
				false,
				null,
				array($test1),
				new Object()
			)
		);
$test2 = serialize($test2);
?>

// then inside script tag ...
// ... serializedString = '<?php echo $test2; ?>', ..