将数据从mysql传递到php到gotowebinar(通过表单发布)

时间:2014-06-16 07:00:55

标签: php mysql forms post

我正在尝试从我们的数据库中获取用户数据,然后自动将这些用户传递给我的gotowebinar。自动代码将在php中完成。这是代码。我想知道为什么它不会将数据传递给gotowebinar页面。我能够成功检索数据。但是当我将表单“post”的代码添加到gotowebinar时,它不会传递数据。我希望你能帮助我。非常感谢。

<?php

$conn = new mysqli("mywebsite.com", "myusername", "mypassword", "mydatabase");
// check connection
if ($conn->connect_error) {
trigger_error('Database connection failed: '  . $conn->connect_error, E_USER_ERROR);
}

$sql = "SELECT name, email FROM users WHERE username = 'Manny'";

$rs=$conn->query($sql);

$rs->data_seek(0);
while($row = $rs->fetch_assoc()){
?>

<form action="https://attendee.gotowebinar.com/register/11111111111" id="formGTW"   method="post">

<input type="hidden" name="registrant.givenName" value="<?php echo $row['name'] ?>" />
<input type="hidden" name="registrant.surname" value="GTN" />
<input type="hidden" name="registrant.email" value="<?php echo $row['email'] ?>" />

<script type="text/javascript">
$(document).ready(function(){
 $("#formGTW").submit();
});
</script>

<?php } ?>

</form>

1 个答案:

答案 0 :(得分:1)

您正在打印<form>以及while循环中的javascript,因此会多次打印。

$rs->data_seek(0);?>

<form action="https://attendee.gotowebinar.com/register/11111111111" id="formGTW"   method="post">
<?php while($row = $rs->fetch_assoc()){
?>

<input type="hidden" name="registrant.givenName[]" value="<?php echo $row['name'] ?>" />
<input type="hidden" name="registrant.email[]" value="<?php echo $row['email'] ?>" />
<?php } ?>
<input type="hidden" name="registrant.surname" value="GTN" />
<script type="text/javascript">
$(document).ready(function(){
 $("#formGTW").submit();
});
</script>

注意:我在名称字段[]之后添加了registrant.givenName,以便发送所有数据(如果循环运行多次)。