1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
<?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"); ?>
|