[PHP] mail() through a form

2002-04-26 Thread Jennifer Downey
Hello to all, I have a mail script with a set of options in a dropdown list that I'm hoping you can help with. Here is the part I wish to get working then after that I can do the rest What I need this to do is send the users name, email address, the option in the drop down list, and the message.

Re: [PHP] mail() through a form

2002-04-26 Thread Rasmus Lerdorf
> $query = "SELECT * FROM {$config["prefix"]}_users WHERE uid = > {$session["uid"]}"; $query = "SELECT * FROM ".${$config['prefix'].'_users'}." WHERE uid = $session[uid]"; > $result = mysql_query($query); $result = mysql_query($query) or die(mysql_erro()); > $row = mysql_fetch_array($result);