1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php require("configure.php"); ?> <? $pid = $_POST["pid"]; //$parentid = $_POST["parentid"]; //$catname = $_POST["catname"]; $catname = htmlspecialchars($_POST["catname"],ENT_QUOTES); $sortby = $_POST["sortby"]; $gallery = $_POST["gallery"]; //$pagecontent = $_POST["pagecontent"]; $pagecontent = preg_replace("/'/","\'",$_POST["pagecontent"]);
if ($pagecontent <> '') { $template = "page.php?parentid=".$pid."&pagecontentid=".$pagecontent; } elseif ($gallery <> '') { $template = "gallery.php?parentid=".$pid."&galleryid=".$gallery; }
mysql_query("insert into categories (parentid, catname, sortby, gallery, pagecontent, template) values ('$pid', '$catname', '$sortby', '$gallery', '$pagecontent', '$template')"); mysql_close($dbh);
header("Location: categoriesindex.php?pid=$pid&msg=Add Successful"); ?>
|