| PHP variables don't get sent to pages? |
|
|
|
| Written by Administrator | |||||||
| Thursday, 20 September 2007 | |||||||
|
DHOST doesn't support global variables, thus you must include POST (aka HTTP_POST_VARS) or GET (aka HTTP_GET_VARS) on variables that are passed to other scripts. $_POST['variable'] - Variables that are directly sent to same/other script. extract($_POST); That code turns $_POST['variable'] and $_GET['variable'] into $variable. But please note: It's not a very good idea to do this (unsafe).
Powered by !JoomlaComment 3.26
3.26 Copyright (C) 2008 Compojoom.com / Copyright (C) 2007 Alain Georgette / Copyright (C) 2006 Frantisek Hliva. All rights reserved." |
|||||||
| Last Updated ( Thursday, 20 September 2007 ) | |||||||
| < Prev | Next > |
|---|


