Flash mail button / notes
- 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;
}
- armed_rob0
Uni...
Can you do me a favour: Make the hole scipt for me?
Im not into php... And you will make my day!
- unfittoprint0
look, before "/* subject */"
paste what I wrote. that easy.
- armed_rob0
YES SIR!!!
Thanx guys!
- armed_rob0
next problem:
I need to ad a few lines... like:
http://www.armedrob.dk/php2/emai…
how do I do that in my PHP?
- unfittoprint0
use "\n" or html breaking space for html email:
- armed_rob0
I know im a pain in the ass... but how?
/* message */
$message = $navn;next one is:
$message = $adresse;
- unfittoprint0
$message = $navn."\n";
$message .= $adresse."\n";
- armed_rob0
Thank you... again!!!