/var/www/(Del)yunfung.com.hk/admin/catmajadd.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php require("configure.php"); ?>
<?
$catname 
$_POST["catname"];
//$sortby        = $_POST["sortby"];
//if (is_numeric($sortby)<>1)
//    $sortby = 0;

//$creationdate = date("F j, Y, g:i a");

mysql_query("insert into category (catname) values ('$catname')");
mysql_close($dbh);

header("Location: catmajindex.php?msg=Add Successful");
?>