Just having an problem trying to process more then one file at a time.
I have tried to use it like this,
but no luck, would love to have it do all files i have rather then input one at a time.
thanks in advance.
Code:
<?php
$filename = 'index.php';
eval "Processing file: $filename... ";
Code:
<?php
$filename = 'index.php';
$filename2 = 'index2.php';
eval "Processing file: $filename, $filename2... ";
thanks in advance.