| 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");
$CoursesCatId = $_POST["CoursesCatId"];
$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"]);
//print_r($_POST);
// 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
// Modify
$sql = "update CoursesCat set CoursesCatTitleen='$CoursesCatTitleen', CoursesCatIntroen='$CoursesCatIntroen', CoursesCatTitletc='$CoursesCatTitletc', CoursesCatIntrotc='$CoursesCatIntrotc', CoursesCatTitlesc='$CoursesCatTitlesc', CoursesCatIntrosc='$CoursesCatIntrosc' ";
if ($CoursesCatImage <> '')
$sql .= ", CoursesCatImage='$CoursesCatImage' ";
$sql .= " where CoursesCatId=". $CoursesCatId ." ";
mysql_query($sql);
if( mysql_errno() > 0 ){
echo 'Courses Category Modify Error:<br />'. mysql_error() .'<br />SQL: '. $sql;
exit;
}
mysql_close($dbh);
header("Location: coursescat_index.php?msg=Modify Successful");
?>