I was just wondering if there is any way's to accomplish the same as the script below would without displaying the processes to the browser like without outputting to the browser. Test the script and you will see what I meen.
| Code: |
|
<?php system('find . -type d -exec chmod 777 {} \; 2>&1'); system('find . -type f -exec chmod 777 {} \; 2>&1'); ?> |
