On 6/10/07, Tijnema <tijnema@xxxxxxxxx> wrote:
On 6/10/07, Roy W <php@xxxxxxxxxxxx> wrote: > My host company must have an installation/configuration issue. > > Variables from forms are not being passed to the php scripts that are sent > via <Form> > > Has anyone heard of this and know of the fix? I don't think that's possible, please show us part of your code, as I expect the problem to be there. Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Are you attempting to call the variables globally? If that's the case, try $_GET if you're calling the form as a GET request, $_POST as a POST request, or $_REQUEST to get anything sent along (including cookie information). Your host may have register_globals = Off in their php.ini, and that's an option you can't override. -- Daniel P. Brown [office] (570-) 587-7080 Ext. 272 [mobile] (570-) 766-8107 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php