> 백엔드 개발 > PHP 튜토리얼 > php 在投递简历时向邮箱自动发送一份当前简历

php 在投递简历时向邮箱自动发送一份当前简历

WBOY
풀어 주다: 2016-06-23 13:43:21
원래의
1199명이 탐색했습니다.

邮箱地址从数据库取,在一个招聘详细页面点有显示,当在该详细页面点击应聘时,怎么将邮箱地址动态传过来并在sendMail.php页面里面获取传过来的邮箱地址



谢谢


回复讨论(解决方案)

招聘详细页面里面:
连接+隐藏iframe

<iframe name="back_interface" id="back_interface"              style="display:block;width:100%;height:300px;"></iframe><a href="../php_test/sendmail.php?EnterpriseMailbox=327496144@qq.com"              target="back_interface" >应聘</a>
로그인 후 복사

或者也可以用ajax传递,以jquery为例
<!doctype html><html>  <head>    <meta charset="UTF-8"/>    <title>Document</title>    <script src="http://static.blog.csdn.net/scripts/jquery.js" type="text/javascript"></script>    <script>  $(function(){    $("#send").click(function(){      var mailbox=$("#EnterpriseMailbox").html()      $.get("../php_test/sendmail.php", { EnterpriseMailbox:  mailbox } ,function(data){        alert("简历已发");      });    });  });</script>  </head>  <body>企业邮局:<div id="EnterpriseMailbox">327496144@qq.com</div><input id="send" type="button" value="应聘"  />  </body></html>
로그인 후 복사





sendmail.php
中对应的改为
$address=$_GET['EnterpriseMailbox'];

招聘页面
应聘

招聘详细页面
$address = isset($_GET['address'])? $_GET['address'] : '';
?>

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿