PHP mailer
PHP mailer
Out of context: Reply #3
- Started
- Last post
- 11 Responses
- unfittoprint0
remember: as off PHP ver 4.12, global variables are urned off as question of security, so they're not immediatelly available when you send them via a link. You'll have to use th server $_GET to retrieve them.
I made a loop to retrieve all at once, you might want to include this on top of your file:
foreach ($_GET as $key => $value) {
$$key = $value;
}