Search found 2 matches

by zsobell
Tue Oct 07, 2008 3:17 pm
Forum: PHP - Code
Topic: html and php form issues
Replies: 2
Views: 190

Re: html and php form issues

Thank you for your timely response (5 minutes...) and your help, although it appears that the ' quotes denote (at least in this case) output text, so i get a string that says, for example, "thank you,\nZach" what is the correct way to solve this? would this work:  $content = 'Comment:'.&qu...
by zsobell
Tue Oct 07, 2008 2:58 pm
Forum: PHP - Code
Topic: html and php form issues
Replies: 2
Views: 190

html and php form issues

I am having trouble writing a simple script that will email me and the commenter the contents of their comment. Right now it looks like <?php   $name = $_REQUEST['name'] ;   $email = $_REQUEST['email'] ;   $comment = $_REQUEST['comment'] ;     $subject = 'a comment for you' ;   $content = 'Comment:'...