source: branches/dev/html/test/uehara/mail.php @ 92

Revision 92, 487 bytes checked in by uehara, 17 years ago (diff)
Line 
1<?php
2/*
3//¥Ç¡¼¥¿¼õ¿®
4$subject = "Support Of Duddy";
5//$address = $_POST['val1'];        //¥¢¥É¥ì¥¹³ÊǼ
6$address = "[email protected]";       //¥¢¥É¥ì¥¹³ÊǼ
7$message = $_REQUEST['val2'].": test!!";        //ËÜʸ³ÊǼ
8
9//¥á¡¼¥ëÁ÷¿®
10$success = mail($address, $subject, $message);
11if($success){
12    //Á÷¿®À®¸ù
13    $flg = 0;
14//  print "Á÷¿®À®¸ù";
15}else{
16    //Á÷¿®¼ºÇÔ
17    $flg = 1;
18//  print "Á÷¿®¼ºÇÔ";
19}
20
21
22//FLASH¤ØÃͤòÁ÷¿®(À®¸ù = 0, ¼ºÇÔ = 1)
23print "trans=".$_REQUEST['val2'];
24*/
25
26print "trans=¤¤¤í¤¤¤í";
27
28
29?>
Note: See TracBrowser for help on using the repository browser.