Flash mail button / notes
Flash mail button / notes
Out of context: Reply #21
- Started
- Last post
- 29 Responses
- unfittoprint0
snce php 4 [4.3] the parameter register_globals is turned off for reasons of security. Haqving a string send to the script it's not enough. You'll have to include this at the top of the script to retrieve every variable send using $_SESSION, $_GET, $_POST etc....
foreach ($_REQUEST as $key => $value) {
$$key = $value;
}