lets say I want to execute this on the command line
php myprogram.php stuff1.txt stuff2.txt
I don't know the names of stuff.txt or stuff2.txt ahead of time so I cant have an include in myprogram.php. How would I tell myprogram.php that these are the txt files I need while I type them on the same line as I run myprogram.php?
php myprogram.php stuff1.txt stuff2.txt
I don't know the names of stuff.txt or stuff2.txt ahead of time so I cant have an include in myprogram.php. How would I tell myprogram.php that these are the txt files I need while I type them on the same line as I run myprogram.php?