-
Notifications
You must be signed in to change notification settings - Fork 0
/
addpost.php
64 lines (57 loc) · 1.14 KB
/
addpost.php
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
<html>
<head>
<title>Don Husa</title>
</head>
<body>
<?php
ini_set('display_errors', 'On');
include_once 'dbclass.php';
if ($_POST['formsubmit']=='Submit') addPost();
else showform();
function updatePost(){
$con=connect();
if ($_POST['title']!=""){
$sql="UPDATE BlogPosts
SET Title='$_POST[title]'
WHERE ID='$_POST[blogID]'";
mysql_query($sql,$con);
}
$sql="UPDATE BlogPosts
SET Post='$_POST[blogpost]'
WHERE ID= '$_POST[blogID]'";
mysql_query($sql,$con);
mysql_close();
}
function newPost($postID){
$con=connect();
if ($_POST['blogID']!="") $postID=$_POST['blogID'];
$sql="INSERT INTO BlogPosts VALUES ('$postID',
'$_POST[title]','$_POST[blogpost]',0,NOW())";
mysql_query($sql,$con);
mysql_close($con);
}
function addPost(){
if ($_POST['pwd']!='blargh'){
echo 'incorrect credentials';
return;
}
if ($_POST['posttype']=='updatepost') {
updatePost();
}
else if ($_POST['posttype']=='newpost'){
$postID=getNumPosts();
newPost($postID);
}
else {
echo "no post type selected...";
include 'addpostform.php';
return;
}
echo 'k';
}
function showform(){
include 'forms/addpostform.php';
}
?>
</body>
</html>