|
i appreciate the help so far guys
with all the different php files i dont have a mail or a config php file
just an activate, recoverpword and sndactivate php files that have something to do with mail. but the strings dont show anything for my email to send out anything
there is a string for C_EMAIL which is the customer email address
"$sql = mysql_query("SELECT C_EMAIL, C_USER_NAME, C_MAIL_TYPE FROM customer where C_KEY = '$cookie'", $link);
$num = mysql_num_rows($sql);
if($num != 0)
{
while($row = mysql_fetch_array($sql))
{
$email = ($row["C_EMAIL"]);
$username = ($row["C_USER_NAME"]);
$type = ($row["C_MAIL_TYPE"]);
"
|