Jump to content

mr_chuya

New Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by mr_chuya

  1. what is your script respond if you run the program?
  2. use Mambo for user management (to state/pick who can login to your web app) or use any other cms. the login script? copy paste from mambo adm login screen. copy necessary files, and... you have a login script now.
  3. You should change security option for upload folder (use windows explorer to change these) for user IUSR_xxxx. Make this user can write/modify for that folder. Hope it helps.
  4. Hello ... i'm just new in php. here's what i find at http://id2.php.net/manual/en/book.mail.php. thx to these guy. ====================================== To test PHP's mail function, utilized the below : <?php $Name = "Da Duder"; //senders name $email = "email@adress.com"; //senders e-mail adress $recipient = "PersonWhoGetsIt@emailadress.com"; //recipient $mail_body = "The text for the mail..."; //mail body $subject = "Subject for reviever"; //subject $header = "From: ". $Name . " <" . $email . ">\r\n"; //optional headerfields mail($recipient, $subject, $mail_body, $header); //mail command ?> If did not work ... try this. <?php $Name = "Da Duder"; //senders name $email = "email@adress.com"; //senders e-mail adress $recipient = "PersonWhoGetsIt@emailadress.com"; //recipient $mail_body = "The text for the mail..."; //mail body $subject = "Subject for reviever"; //subject $header = "From: ". $Name . " <" . $email . ">\r\n"; //optional headerfields ini_set('sendmail_from', 'me@domain.com'); //Suggested by "Some Guy" mail($recipient, $subject, $mail_body, $header); //mail command ?>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.