Forum Moderators: coopster
im wondering:
i can edit sql db fields from the frontend,
i can specify options in html (<select><option>...)
But,
in a php file (contact.php) in the mail("blah@blah.com", $subject, $message, $from);
If i do this:
mail($emailadd, $subject, $message, $from);
can i do this?
$emailadd = htmlentities(strip_tags($_POST[" "]));
thats where im stuck. Im aware these a fopen in php, but has this ever been done.. im setting it up for the manager to be able to change the email address if need to in future.. (self managed website) or should i just make a db table, and manage it like that?