묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
특정페이지로 이동시
2003.07.11 17:19
특정페이지를 보여줄때 보는 사람이 이름 및 이메일주소를 입력후 확인하면 특정페이지로 이동하며, 이름 및 이메일주소는 관리자의 메일로 보내지게하는 소스 또는 방법이 있나요?
<?
$header = "From : $name <". $from .">\n
Reply-Path: <". $from. ">\n
Content-Type: text/html;charset=EUC-KR\n";
mail("김상준님이메일주소", $subject, $contents, $header);
echo "특정페이지 내용";
?>
-----------------------------------------------------------
메일보내기.html---------------------------------------------
<form action="특정페이지.php">
이메일 주소<input type=text name=from>
이름 <input type=text name=contents>
<input type=submit value="특정페이지 접속">
<input type=hidden name=subject value="특정페이지로 접속하려는 사람">
</form>
-----------------------------------------------------------
제가 많이 허접합니다.
조금이나마 도움이 되셨으면 합니다.