从用户输入的信息中提取自定义URL

时间:2016-02-09 01:54:19

标签: php forms variables submit

所以即时尝试使用此页面中的表单,

http://www.javascript-coder.com/files/calculation/cakeform.html

但我没有在同一页面显示结果,而是希望将值发布到php页面上(通过提交按钮)

我尝试了下面的代码,但没有捕获任何值,既没有从div,也没有提取按钮。任何帮助将不胜感激。感谢。

    <?php
    if(!isset($_POST['search']))
        exit("Error. You have to get here through the search page");

    $destination = "";
    switch($_POST['search')
    {
        case "127234":
            $destination = "127234.com";
            break;

        case "806654":
            $destination = "806654.com";
            break;



        default:  //  

            $destination = "oops.com";
            break;
    }
    header("Location: ".$destination);
    ?>

1 个答案:

答案 0 :(得分:0)

您的表单包含

&#13;
&#13;
<form id="cakeform" onsubmit="return false;">
&#13;
&#13;
&#13;

将其更改为

&#13;
&#13;
<form  id="cakeform" action="filename.php">
&#13;
&#13;
&#13;