dongyuruan2957 2017-08-23 18:45
浏览 65
已采纳

如何在PHP重定向后显示警告框[关闭]

Well, the title's pretty self-explanatory. I have a form on an index.html.

And this PHP code to POST that form into an external URL and then redirect to the index again:

<?php

Echo "<style>body{background:#3e4744}</style>";
Echo "<style>h2{display:none}</style>";

//extract data from the post
//set POST variables
$url = 'https://blablabla.com';
$fields = array(
    'email' => urlencode($_POST['email'])
);

//url-ify the data for the POST
foreach($fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
rtrim($fields_string, '&');

//open connection
$ch = curl_init();

//set the url, number of POST vars, POST data
curl_setopt($ch,CURLOPT_URL, $url);
curl_setopt($ch,CURLOPT_POST, count($fields));
curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);

//execute post
$result = curl_exec($ch);

//close connection
curl_close($ch);

if (isset($_POST['submit'])){   
    ?>
    <script type="text/javascript">
        window.location = "/";
    </script>      
    <?php
}

?>

So, the thing is. How can I show an alert box saying something like: "Your post was succesfully sent" right after the page has been redirected?

  • 写回答

1条回答 默认 最新

  • dsfdsf21312 2017-08-23 19:11
    关注

    As the index.html isn't processed on the server, you have to use some client side logic to transfer data from one page to the other. You could use session storage, local storage, cookies or just the url.

    An easy way would be to just pass an indicator inside the url hash. To achieve this, you could modify your window.location like this

    window.location = "/#success";
    

    and inside the index.html just test, if the url hash is equal to #success

    <script>
        if (window.location.hash == '#success') {
            alert('Success message..!');
        }
    </script>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 软件定义网络mininet和onos控制器问题
  • ¥15 微信小程序 用oss下载 aliyun-oss-sdk-6.18.0.min client报错
  • ¥15 ArcGIS批量裁剪
  • ¥15 labview程序设计
  • ¥15 为什么在配置Linux系统的时候执行脚本总是出现E: Failed to fetch http:L/cn.archive.ubuntu.com
  • ¥15 Cloudreve保存用户组存储空间大小时报错
  • ¥15 伪标签为什么不能作为弱监督语义分割的结果?
  • ¥15 编一个判断一个区间范围内的数字的个位数的立方和是否等于其本身的程序在输入第1组数据后卡住了(语言-c语言)
  • ¥15 Mac版Fiddler Everywhere4.0.1提示强制更新
  • ¥15 android 集成sentry上报时报错。