&安培;转到页面相关问题

时间:2013-11-11 02:03:21

标签: php sms location

<? echo "<script> document.location.href='main.php';</script>"; ?>

此代码运行良好

但是,从表单页面发送值

<form action="smssend.php" method="post" id="quickform"> 
<input type="hidden" name="returnUrl" value="<? =PHP_SELF?>"> 

这为下一页提供了一个值

<? echo "<script> document.location.href='$_POST[returnUrl]';</script>"; ?>

如果源和页面不移动,则会发生运行时错误。

我错了吗?

在表单页面下,我收到了来自电话号码的消息,并参考了页面来源以处理更少的内容。

<?php

$config['SMS_ID']="test";
$config['SMS_PW']="test1234";
$config['cf_tel']='01234567';

$post_data = array(
            "remote_id"       => $config['SMS_ID'],
            "remote_pass"     => $config['SMS_PW'], 
            "remote_num"      => 1, 
            "remote_reserve"  => 0, 
            "remote_phone"    => $_POST[number],
            "remote_callback" => $config['cf_tel'],
            "remote_msg"      => $_POST[counsle]
        );

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.mymunja.co.kr/Remote/RemoteSms.html" );
curl_setopt($ch, CURLOPT_POST, 1 );
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$msg = curl_exec($ch);
curl_close($ch);
?>
<? echo "<script> alert('Done');</script>"; ?>
<? echo "<script> document.location.href='$_POST[returnUrl]';</script>"; ?>

3 个答案:

答案 0 :(得分:3)

<? echo "<script> document.location.href="$_POST[returnUrl]";</script>"; ?>

你的问题是使用字符串分隔符

答案 1 :(得分:0)

尝试使用<html></html>代码。

<? echo "<html><script> alert('Done');</script></html>"; ?>


<? echo "<html><script> document.location.href='$_POST[returnUrl]';</script></html>"; ?>

答案 2 :(得分:0)

我的猜测是

<input type="hidden" name="returnUrl" value="<? =PHP_SELF?>"> 

实际应该是

<input type="hidden" name="returnUrl" value="<?=PHP_SELF?>"> 

查看表单来源并确保隐藏输入的值具有正确的值。