⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 product_checktitle.inc.php

📁 phpcms2007很好的cms内容管理系统,操作方便
💻 PHP
字号:
<?php
defined('IN_PHPCMS') or exit('Access Denied');
$PHPCMS['sitename'] = $LANG['check_repeat_name']." - $title - ";
if(empty($title))
{
	$message = '<font color="red">'.$LANG['input_product_name'].'</font>';
}
else
{
	$result=$db->query("SELECT productid,pdt_name FROM ".TABLE_PRODUCT." WHERE disabled=0 AND pdt_name LIKE '%$title%'");
	$articles=$db->fetch_array($result);
	if(empty($articles))
	{
		$message = '<font color="blue">'.$LANG['product_not_exist_continue'].'</font>';
	}
	else
	{
		$message = '<font color="red">'.$LANG['product_exist_return_to_manage'].'</font>';
	}
}
include admintpl('product_checktitle');
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -