| Server IP : 210.245.233.93 / Your IP : 216.73.216.226 Web Server : Apache/2.2.15 (CentOS) System : Linux webserver2.onesolution.com.hk 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : apache ( 48) PHP Version : 5.3.3 Disable Function : exec, shell_exec, system, passthru, popen, proc_open, pcntl_exec MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/(Del)discoverylearning.com.hk/webadmin/ |
Upload File : |
<?php require("configure.php");
$CoursesCatTitleen = htmlspecialchars($_POST["CoursesCatTitleen"],ENT_QUOTES);
$CoursesCatIntroen = preg_replace("/'/","\'",$_POST["CoursesCatIntroen"]);
$CoursesCatTitletc = htmlspecialchars($_POST["CoursesCatTitletc"],ENT_QUOTES);
$CoursesCatIntrotc = preg_replace("/'/","\'",$_POST["CoursesCatIntrotc"]);
$CoursesCatTitlesc = htmlspecialchars($_POST["CoursesCatTitlesc"],ENT_QUOTES);
$CoursesCatIntrosc = preg_replace("/'/","\'",$_POST["CoursesCatIntrosc"]);
$CoursesCatSort = $_POST["CoursesCatSort"];
//print_r($_POST);
$sql = "select max(CoursesCatId) as maxid ";
$sql .= "from CoursesCat ";
$result=mysql_query($sql);
$row = mysql_fetch_array($result,MYSQL_ASSOC);
$CoursesCatId = $row{maxid}+1;
// copy image
if ($_FILES['CoursesCatImage']['name'] <> '')
{
if (($_FILES["CoursesCatImage"]["type"] == "image/bmp") || ($_FILES["CoursesCatImage"]["type"] == "image/gif") || ($_FILES["CoursesCatImage"]["type"] == "image/jpg") || ($_FILES["CoursesCatImage"]["type"] == "image/jpeg") || ($_FILES["CoursesCatImage"]["type"] == "image/pjpeg") || ($_FILES["CoursesCatImage"]["type"] == "image/png"))
{
copy ($_FILES['CoursesCatImage']['tmp_name'], "coursesimg/id".$CoursesCatId."_".$_FILES['CoursesCatImage']['name'])
or die ("Could not copy");
$CoursesCatImage = "id".$CoursesCatId."_".$_FILES['CoursesCatImage']['name'];
$CoursesCatImage = htmlspecialchars($CoursesCatImage,ENT_QUOTES);
}
else
{
// upload error
?>
<script language="javascript">
alert("Files must be BMP, JPEG, GIF, or PNG");
history.back();
</script>
<?php
exit;
}
}
else
{
$CoursesCatImage = "";
}
// End upload image code
if ($CoursesCatSort == '' || $CoursesCatSort == '0') {
$sql = "select max(CoursesCatSort) as maxid ";
$sql .= "from CoursesCat ";
$result=mysql_query($sql);
$row = mysql_fetch_array($result,MYSQL_ASSOC);
$CoursesCatSort = $row{maxid}+1;
}
if( mysql_num_rows(mysql_query("SELECT CoursesCatId FROM CoursesCat WHERE CoursesCatSort=$CoursesCatSort ")) > 0){
mysql_query("UPDATE CoursesCat SET CoursesCatSort= CoursesCatSort+1 WHERE CoursesCatSort >=$CoursesCatSort ");
}
$sql = "insert into CoursesCat (CoursesCatId, CoursesCatTitleen, CoursesCatIntroen, CoursesCatTitletc, CoursesCatIntrotc, CoursesCatTitlesc, CoursesCatIntrosc, CoursesCatImage, CoursesCatSort) values ('$CoursesCatId', '$CoursesCatTitleen', '$CoursesCatIntroen', '$CoursesCatTitletc', '$CoursesCatIntrotc', '$CoursesCatTitlesc', '$CoursesCatIntrosc', '$CoursesCatImage', '$CoursesCatSort')";
mysql_query($sql);
if( mysql_errno() > 0 ){
echo 'Courses Category Add Error:<br />'. mysql_error() .'<br />SQL: '. $sql;
exit;
}
mysql_close($dbh);
header("Location: coursescat_index.php?msg=Add Successful");
?>