此页面无法正常工作 HTTP ERROR 500

This page isn’t working HTTP ERROR 500

我正在尝试在我的项目中使用 php post 方法,但我不知道为什么它不起作用。

基本上我有 2 个页面:index.phpdata.php

index.php 那里有一个 php 表格,可以通过它输入他的详细信息并单击提交,另一个页面 data.php 应该检索它,但它没有做 so.I 出现错误

This page isn't working ... HTTP ERROR 500

index.php

<html>
<body>
    <form action="data.php" method="post">
        Enter your tt: <input type="text" name="token"><br>
        <input type="submit">
    </form>
</body>
</html>

JsFiddle Link

data.php

<?php

if(isset($_POST['token'])){
    $abc = explode('token=',$_POST['token']);

    if($abc[1]){

        $test = explode('&expires_in=',$abc[1]);
    }
    else
    {
        $test[0] =$_POST['token'];
    }

    include 'qwert1.php';
}

else{}

$titror ='?><script>alert("Sorry, Its Invalid");document.location="/";</script><?';

?>

JsFiddle Link

data.php 的第 8 行有:

$tes = explode('&expires_in=',$abc[1]);

$tes 应该读作 $test。

更新此:

$titror ='?><script>alert("Sorry, Its Invalid");document.location="/";</script><?';

对此:

?><script>alert("Sorry, Its Invalid");document.location="/";</script>

你不能开始一个字符串:

$titror = '

并关闭 php 标签。