PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
Can anyone tell why a host would have this set to "on" in the php.ini? I am having trouble running a script on a certain host that I run on 3 other servers without any probs. I have checked the others phpinfo and the only glaring difference is register_argc_argv is set to off on those, and on on this particular server. I'm using $_POST[var], $_SESSION[var], etc...
and my variables are not being carried to the next page/form.
The global PHP variables $argc (number of arguments passed to the application) and $argv (array of the actual arguments) are always registered and filled in with the appropriate values when using the CLI SAPI.