0

我正在将外部 php 页面加载到我的用户页面 (user.php) 上的对话框中。外部页面 (contact.php) 包含一个表单。

我想提交表单,然后在对话框中向用户返回一条消息。

当我运行 contact.php 时,表单提交。我无法从 user.php 的对话框中提交它——感谢您的帮助。

这是来自 user.php 的 jquery

$(document).on('click', '#contact_tutor', function(){
$('div#dialog').load("contact.php?id="+uid)
.dialog({
    width: 800,
    height: 425,
    title: "Contact,
});
});

在第一页的 html 中 (user.php)

<div id="contact_tutor" class="contact"><a href="#">Contact <?php echo $name;?></a></div>
<div id="dialog" ></div>

这是来自 Contact.php 的代码

<?php
include_once($_SERVER['DOCUMENT_ROOT']."/MySite/php_includes/check_login_status.php");

if (isset($_POST['posted'])&& isset($_POST['message'])){
//do stuff
?>

<!DOCTYPE html>
<head>
<link rel="stylesheet" href="style/style.css">

</head>

<body>
    <form id="message" method="POST" action="<?php echo $PHP_SELF;?>" class="contact">
    <label>Your Name:</label> <input type="text" name="sender_name" value=""></br>
    <label>Email:</label><input type="text" name="sender_email" value=""></br>
    <label>Message:</label><textarea class="textbox" cols="53" rows="10" name="message" value=""></textarea>
    <input type="hidden" name="posted" value="posted">
    <input type="Submit" value="Send Message">
    </form>
        <div class="statuserror"><?php echo $err?></div>
</body>
</html>
4

1 回答 1

0

刚刚意识到问题 - 我正在使用 php echo 来定义表单的操作 - 它不起作用并显示为 null,将其替换为硬编码字符串,一切都很好!

于 2013-06-14T20:38:05.857 回答