: synikal | 2004/12/18 |
|
"OK, but uses old PHP version" Downloaded this file, but it doesn't work right out of the box, it expects register_globals to be on if you are using a version of PHP above 4.2. Otherwise, you will have to add some code. I added this code to the top of admin/index.php, and it seems to be working OK. function get_post_var($name) { if (isset($_POST[$name])) return $_POST[$name]; else return ''; } $op= get_post_var('op'); $name= get_post_var('name'); $form_quote= get_post_var('form_quote'); $add= get_post_var('add'); $browse_in= get_post_var('browse_in'); $browse_text= get_post_var('browse_text'); $browse= get_post_var('browse'); $form_id= get_post_var('form_id'); $form_author= get_post_var('form_author'); $editdb= get_post_var('editdb'); |