MySQL
MySQL
Out of context: Reply #13
- Started
- Last post
- 14 Responses
- unfittoprint0
Don't turn them on, because it's a security precution. Use the new global php variables. one way to go around it and use these received variables is to do something like:
foreach ($HTTP_GET_VARS as $key => $value){
$$key = $value
}or
foreach ($HTTP_POST_VARS as $key => $value){
$$key = $value
}have fun.