
03-27-2003, 05:16 PM
|
|
|
Join Date: Aug 2002
Posts: 291
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Today at 12:46 PM hidjra said this in Post #168
in create_category.php and create_subcategory.php use this code chunck instead of the one in tha zip
PHP Code:
// add category to database
$vars = "sName";
$values = "'" . addslashes($name) . "'";
if ($desc) {
$vars = $vars . ",sDescription";
$values = $values . ",'" . addslashes($desc) . "'";
}
PHP Code:
// add subcategory to database
$vars = "sName,iCategoryID";
$values = "'" . addslashes($name) . "',$cid";
if ($desc) {
$vars = $vars . ",sDescription";
$values = $values . ",'" . addslashes($desc) . "'";
}
thx for the great hack 
Hidjra
|
What exactly does this do?
|