PDA

View Full Version : PHP and Variables... should be that hard to help with...


Slybone
09-24-2004, 04:02 AM
<?php
//start reusable script
$emails = "TO@Email";
$subject = "Subject";
$body = "Hi $user";
$from = "From: From@email\n";

$subject = addslashes($subject);
$body = addslashes($body);

mail($emails, $subject, $body, $from);

?>

Basically what I want... is when I access this page for there to be a text box for $emails and $user so I can edit who the Email is going to, and the username without having to reedit the php file so...

*Accessed php page in browser*
Send To: (BOX)
Username: (BOX)
Submit
*when submit is hit, it sends the email to the user designated in the Send To Box*

and let it replace the variable.. thanks
-Bone

Xenon
09-24-2004, 12:20 PM
<?php
if ($_POST['do'] == 'send')
{
//start reusable script
$user = $_POST['user'];
$emails = $_POST['addy'];
$subject = "Subject";
$body = "Hi $user";
$from = "From: From@email\n";

$subject = addslashes($subject);
$body = addslashes($body);

mail($emails, $subject, $body, $from);
}
?>
<form action="name of your phpfile here" action="post">
<input type="hidden" name="do" value="send" />
<input type="text" name="user" value="username" /><br />
<input type="text" name="addy" value="who@where.com" />
<input type="submit" name="s" value="send" />
</form>


plain and simple