I have a command that I use in a shell script :
lynx -dump -source "$cgi_url?CSID=73073900&CalculaDac=&Number=45454545"
I'm need translate this shell script to PHP and I don't know what happens with this command, already passed to PHP:
..................................
$lynx = "$cgi_url?CSID=73073900&CalculaDac=&Number=45454545";
system('lynx -dump -source \"$lynx\" > result.html');
..................................
Note: this command need the "quotes" around the variable $lynx.
But nothing works !
Some idea ?