Results from the most recent live auction are here .
26 members in the live chat room. Join Chat !
09-09-2006, 07:18 AM
· #26 NamePros Member
Join Date: Aug 2006
Posts: 121
NP$: 16.00 (
Donate )
let me know when its up and running, the little kiddies love this script
09-10-2006, 05:59 AM
· #27 NamePros Member
There is a way around that. Configure your mailserver to not send the headers, or simply foward the info to a true anon email sender
09-10-2006, 07:23 PM
· #28 URLShrinker.com
Name: Sonny Van
Location: San Francisco, CA
Join Date: May 2006
Posts: 2,380
NP$: 31.00 (
Donate )
Actually, I am thinking of putting a link for people to click to read their message OR creating on the fly image so that the message is embed as an image and no headers are sent.
09-11-2006, 06:20 AM
· #29 NamePros Member
Join Date: Aug 2006
Posts: 121
NP$: 16.00 (
Donate )
I would go with the image, clicking a link is no fun!
10-21-2006, 02:28 PM
· #30 NamePros Member
You should allways do basic checks when accepting data via a form, even if not entering that data into a database.
Code:
$toemail = $_POST['toemail'];
$subject = $_POST['subject'];
$message = $_POST['message'];
-//--------------------------//-
$toemail = strip_tags($_POST['toemail']);
$subject = strip_tags($_POST['subject']);
$message = strip_tags($_POST['message']);
strip_tags()
10-21-2006, 04:04 PM
· #31 Buy my domains.
Name: Dan
Join Date: Feb 2006
Posts: 2,801
NP$: 54.00 (
Donate )
Originally Posted by GoDesign You should allways do basic checks when accepting data via a form, even if not entering that data into a database.
Code:
$toemail = $_POST['toemail'];
$subject = $_POST['subject'];
$message = $_POST['message'];
-//--------------------------//-
$toemail = strip_tags($_POST['toemail']);
$subject = strip_tags($_POST['subject']);
$message = strip_tags($_POST['message']);
strip_tags()
That wouldn't do anything because it sends a plain text email.
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off