如何使用$ _ GET与build_categories_options功能(How Can i u

2019-09-23 05:12发布

现在我已创建类别和创造职位是成功的,但是当我编辑自己的帖子我有问题,如果编辑自己的帖子,我会失去我的类别。我需要让我的类别中的表,我可以改变它

<?php

$sql = "SELECT catid, catname, parentid FROM categories";
$res = mysql_query($sql);

// initialize $categories to make sure it is an array
$categories = array();
while ($row = mysql_fetch_assoc($res)) {
$parent = intval($row['parentid']);
$categories[$parent][] = $row;
    }
    ?>
    <table border="0" cellpadding="10" cellspacing="0">
    <tr>
    <td valign="top">

    <?php
    $category_string = "";
    function build_categories_options($parent, $categories, $level) {
        global $category_string;
        if (isset($categories[$parent]) && count($categories[$parent])) {
            $level .= " - ";
            foreach ($categories[$parent] as $category) {
                $opt_value = substr($level.$category['catname'],3);
                $category_string .= '<option value=""></option><option value="'.$category['catid'].'">'.$opt_value.'</option>';
                build_categories_options($category['catid'], $categories, $level);
            }
            $level = substr($level, -3);
        }
        return $category_string;
    }
    $category_options = build_categories_options(0, $categories, '');
    $category_options = '<select class="chosen" name="categories" id="categories">'.$category_options.'</select>';
    echo $category_options; 
    ?>
</td>

位于第25行我的问题

$category_string .= '<option value=""></option><option value="'.$category['catid'].'">'.$opt_value.'</option>';

我需要让我的类别中第一和显示结果的其余部分。

Answer 1:

对于每个类别,您显示两个选项,一个空的选项,并用一个类别信息:

$category_string .= '<option value=""></option><option value="'.$category['catid'].'">'.$opt_value.'</option>';

这是你的循环中。 所以每次你的循环迭代时, 两个选项将被创建。 一个空白的一个又一个与你的类别。 我敢打赌,你只需要在的最开始一个空白选项<select> 。 我认为这是你想要的东西:

// notice we are initializing $category_string with an empty option here
$category_string = '<option value=""></option>';

function build_categories_options($parent, $categories, $level) {
    global $category_string;
    if (isset($categories[$parent]) && count($categories[$parent])) {
        $level .= " - ";
        foreach ($categories[$parent] as $category) {
            $opt_value = substr($level.$category['catname'],3);

            // removed extra empty category and put it in $category_string initialization
            $category_string .= '<option value="'.$category['catid'].'">'.$opt_value.'</option>';
            build_categories_options($category['catid'], $categories, $level);
        }
        $level = substr($level, -3);
    }
    return $category_string;
}

此外,作为@MoeTsao在评论中提到的,尽量避免使用mysql_*功能,因为它们的使用是由PHP气馁。 相反,使用mysqli_*或PDO 。



文章来源: How Can i use $_get with build_categories_options function