0

我有这个表格:

<form action="index.php?type=add_lesson&type=add" method="post">
                <?php echo $lesson_title; ?><br/><input type="text" name="title" style="width:450px;" /><br/>
                <?php echo $lesson_url; ?><br/><input type="text" name="url" style="width:450px;" /><br/>
                <?php echo $keywords; ?><br/><input type="text" name="kewyords" style="width:450px;" />
                    <br/><br/><br/>
                    <input type="submit" value="<?php echo $submit;?>" class="button"  /></form>

这个 index.php 代码:

if($_GET['type'] == "add_lesson"){
        include_once(fls."add_lesson.php");
    }

这个 add_lesson.php 代码:

if($_GET['type'] == 'add'){
    $title    = htmlspecialchars($_POST['title']);
    $url      = htmlspecialchars($_POST['url']);
    $kewyords = htmlspecialchars($_POST['kewyords']);
        $sql = $mysqli->query("INSERT INTO LESSONS(L_TITLE,L_URL,L_COMMENTS,L_VIEWS,L_KEYWORDS)
                                VALUES('".$title."','".$url."','0','0','".$kewords."') ");
        echo $added_sucessfully;
}

但是当我点击提交时我得到白页
是什么问题?

4

1 回答 1

0

您的代码中有错误: include_once(fls."add_lesson.php"); 可能你提到了 include_once($fls."add_lesson.php");

还要确保您的 php 安装显示 php 错误。可能您有未显示的致命 PHP 错误。

这是确保您看到 php 错误的简单教程: http ://www.wallpaperama.com/forums/how-to-display-php-errors-in-my-script-code-when-display-errors- is-disabled-t453.html

另一件事..你有

<form action="index.php?type=add_lesson&type=add" method="post">

所以你只在 PHP 中得到 type=add :)

于 2013-02-10T16:57:31.480 回答