----- Original Message ----- From: "Heather Laidlaw" <[EMAIL PROTECTED]>
> This worked yesterday... Doesn't today... > I'm at a loss to explain what has changed between yesterday and today. > Anyone have any ideas or things that I might test? Your Web host may have updated their installation of PHP to the latest version and if so you will probably need to change the way your PHP pages reference any form variables passed to them... Before version 4.2.1 of PHP, if you had a form value called 'fred', PHP would automatically (by default) create a variable $fred that your script could use. Now this is turned off by default and the form values are stored in arrays that you have to get the value from as $HTTP_POST_VARS['fred'] or $HTTP_GET_VARS['fred'], or alternatively $_POST['fred'] or $_GET['fred']. You can also use $_REQUEST['fred'] which works for both POST and GET values, and cookies too. Grrr. Bj ____ � The WDVL Discussion List from WDVL.COM � ____ To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] Send Your Posts To: [EMAIL PROTECTED] To change subscription settings to the wdvltalk digest version: http://wdvl.internet.com/WDVL/Forum/#sub ________________ http://www.wdvl.com _______________________ You are currently subscribed to wdvltalk as: [email protected] To unsubscribe send a blank email to [EMAIL PROTECTED]
