Initial checking from CVS

This commit is contained in:
Deon George
2011-01-14 01:45:19 +11:00
commit fe11dd5f51
70 changed files with 10950 additions and 0 deletions

15
tools/unserialize.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
require '../lib/common.php';
if ($var = get_request('var','REQUEST')) {
debug_dump($var);
debug_dump(unserialize($var));
} else {
echo '<form>';
echo '<input type="text" name="var" />';
echo '<input type="submit" />';
echo '</form>';
}
?>