Iam尝试使用php创建博客类别的下拉框,在编辑类别表单时,不应显示我需要以类别形式更新的现有类别名称。
示例我在该类别下有产品电子产品我有笔记本电脑和手机,如果我在下拉框中更新手机移动选项不应该显示提前感谢
The second form in which i highlighten "laptop" Keyword , while editing it should not be displayed
<select name="category" class="field" style="width:160px" >
<option value="0">Select</option>
{var name='cat_ops'}
</select>
if ($_GET['action'] == 'edit' && $_GET['id']) {
$sel_cat =$cate_id ;
} else {
$sel_cat = "";
}
construct_cat_ops($sel_cat);
$tmpl->setvar('cat_ops', $cat_ops);
答案 0 :(得分:1)
我认为你的代码应该是,无论如何我不知道php代码是在单独的文件中,而html / tpl代码是在单独的文件中。
if ($_GET['action'] == 'edit' && $_GET['id']) {
$sel_cat =$cate_id ;
} else {
$sel_cat = "";
}
construct_cat_ops($sel_cat);
$tmpl->setvar('cat_ops', $cat_ops);
<select name="category" class="field" style="width:160px" >
<option value="0">Select</option>
{var name='cat_ops'}
</select>
答案 1 :(得分:1)
if ($_POST['update'] && $_POST['hid_id']) {
if($brand==$categoryname){
$msg = "Parent category cannot be same";
$tmpl->setvar('msg_err', $msg);
}else{
$db->query("Update `blog_category` set`name`='$brand',`parent`='$category' where id='" . $_POST['hid_id'] . "'");
$msg = "Blog category Updated Successfully";
$tmpl->setvar('msg_ok', $msg);
$tmpl->setvar('name', $brand);
}
}