babiche Posted May 14, 2010 Share Posted May 14, 2010 Hello, is there a short script to get a number send with the email, every time a different new number? this php loads variables from flash swf see below <?php $sendTo = "[email protected]"; $subject = "Bumper Order"; <<<<<<<here should be an automatic number $headers = "From: " . $_POST["name"] ." <" . $_POST["email"] .">\r\n"; $headers .= "Reply-To: " . $_POST["email"] . "\r\n"; $headers .= "Return-Path: " . $_POST["email"]; $message = "Product: " . $_POST["product"] . " Quantity: " . $_POST["quantity"]; <<<<<<<here should be an automatic number mail($sendTo, $subject, $message, $headers); ?> thx Quote Link to comment https://forums.phpfreaks.com/topic/201722-auto-generate-a-order-number-gets-send-to-emailadres/ Share on other sites More sharing options...
Deoctor Posted May 14, 2010 Share Posted May 14, 2010 function createRandomword() { $chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz023456789"; srand((double)microtime()*1000000); $i = 0; $pass = '' ; while ($i <= 10) { $num = rand() % 33; $tmp = substr($chars, $num, 1); $pass = $pass . $tmp; $i++; } return $pass; } Quote Link to comment https://forums.phpfreaks.com/topic/201722-auto-generate-a-order-number-gets-send-to-emailadres/#findComment-1058165 Share on other sites More sharing options...
Muddy_Funster Posted May 14, 2010 Share Posted May 14, 2010 You do know that if there is money changing hands at any point during this then you will get shot dead by the tax man if you use randomly generated order numbers or invoice numbers? Quote Link to comment https://forums.phpfreaks.com/topic/201722-auto-generate-a-order-number-gets-send-to-emailadres/#findComment-1058166 Share on other sites More sharing options...
babiche Posted May 14, 2010 Author Share Posted May 14, 2010 thanks, but where and how should I put this script in my script exactly, so it gets send to emailadres...and is it possible to start with ordernr. 1, ordernr.2 etc Quote Link to comment https://forums.phpfreaks.com/topic/201722-auto-generate-a-order-number-gets-send-to-emailadres/#findComment-1058172 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.