Hi all,
I was wondering if any of you had an idea on how to do the following:
Code:
for i in `whatever the result is`; do
php thePhpScript.php $i
done
so what I am trying to do is send the result of the for loop as a variable (equivalent to $1 in bash) to my PHP program.
Can this be done?