Hi,
When you have an EOS segment, how do you emulate a user hitting "Enter"? For example:
$cmd=<<<EOS
some action
#I want to hit enter here
EOS;
exec($cmd);
Note that I already hit enter after the first "some action" , I just want to emulate hitting enter again where the comment is.
I tried just leaving a blank line, but it didn't work. Help!