-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd-post.php
More file actions
190 lines (171 loc) · 6.8 KB
/
Copy pathadd-post.php
File metadata and controls
190 lines (171 loc) · 6.8 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<?php
include("css/css/css.php");
include("include/db.php");
include("include/session.php");
include("include/sidebar.php");
?>
<style media="screen">
.custom-label {
display: inline-block;
background-color: #007bff;
color: #fff;
padding: 10px 15px;
cursor: pointer;
}
#imageInput {
display: none;
}
</style>
<div class="container-fluid">
<div class="row">
<div class="col-sm-10 title">
<h1><i class="fa fa-bars"></i> Add New Post</h1>
<?php echo failed_alert();
echo success_alert();
echo add_post(); ?>
</div>
<div class="col-sm-12">
<div class="row">
<form method="post" action="add-post.php" enctype="multipart/form-data">
<div class="col-sm-9">
<div class="form-group">
<input autocomplete="off" id="textInput" type="text" name="title" class="form-control" placeholder="Enter title here">
<span id="text-limitation-error"></span>
</div>
<div id="second-input" class="form-group ">
<input autocomplete="off" id="textInput2" type="text" name="title" class="form-control hidden" placeholder="Enter title here">
</div>
<div class="form-group">
<input autocomplete="off" type="text" name="single_title" class="form-control" placeholder="Enter single page title here">
</div>
<div class="form-group">
<input autocomplete="off" type="text" name="special_title" class="form-control" placeholder="Enter special page title here">
</div>
<div style="width: 50%; float: right;" class="form-group">
<input autocomplete="off" type="text" name="image_name" class="form-control" placeholder="Image Name">
</div>
<div style="width: 50%;" class="form-group">
<input autocomplete="off" type="text" name="tags[]" class="form-control" placeholder="Use comma to add multiple tags">
</div>
<div class="form-group">
<textarea class="form-control" name="description" rows="15"></textarea>
<div class="col-sm-12 word-count">Word count: 0</div>
</div>
</div>
<div class="col-sm-3">
<div class="content publish-box">
<h4>Publish <span class="pull-right"><i class="fa fa-chevron-down"></i></span></h4>
<hr>
<div class="form-group">
<button name="draft" class="btn btn-default">Save Draft</button>
</div>
<p>Status: Draft <a href="#">Edit</a></p>
<p>Visibility: Public <a href="#">Edit</a></p>
<p>Publish: Immediately <a href="#">Edit</a></p>
<div class="row">
<div class="col-sm-12 main-button">
<label for="vehicle2">Staffs Picks</label><br>
<input type="checkbox" id="vehicle3" name="staffPick" value="staff">
<button id="publish-btn" name="submit" class="btn btn-primary pull-right">Publish</button>
</div>
</div>
</div>
<div class="content cat-content">
<h4>Category <span class="pull-right"><i class="fa fa-chevron-down"></i></span></h4>
<hr>
<?php
$count_cat = $connect->query("SELECT COUNT(*) FROM category")->fetchColumn();
$totalRecords = $count_cat; // Retrieve the total number of records from your database
// Step 2: Define the number of records per page and calculate the total number of pages
$recordsPerPage = 6;
$totalPages = ceil($totalRecords / $recordsPerPage);
// Step 3: Determine the current page number
$currentPage = isset($_GET['page']) ? $_GET['page'] : 1;
// Step 4: Query the database to fetch records for the current page
$offset = ($currentPage - 1) * $recordsPerPage;
$stmt = $connect->prepare("select * from category order by date desc limit $offset, $recordsPerPage");
$stmt->execute();
$cat = $stmt->fetchAll();
if ($stmt->rowCount() > 0) {
foreach ($cat as $row) {
?>
<p><label for="cat6"><input type="checkbox" value="<?php echo $row['cat_n']; ?>" name="category[]" id="cat6"><?php echo $row['cat_n']; ?></label></p>
<?php
}
} else {
?>
<p><label for="cat5">No category added</label></p>
<?php } ?>
<?php
echo '<ul class="pagination">';
for ($page = 1; $page <= $totalPages; $page++) {
$activeClass = ($page == $currentPage) ? 'active' : '';
echo '<li class="' . $activeClass . '"><a href="add-post.php?page=' . $page . '">' . $page . '</a></li>';
}
echo '</ul>';
?>
</div>
<div class="content featured-image">
<h4>Featured Image <span class="pull-right"><i class="fa fa-chevron-down"></i></span></h4>
<hr>
<input type="file" name="image" id="file" class="inputfile" style="display: none;">
<label for="imageInput" class="custom-label">Select Image</label>
<input type="file" id="imageInput" name="image" accept="image/*" onchange="handleImageChange(event)">
<img id="displayImage" src="#" alt="Selected Image" style="max-width: 100%; display: none;">
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<script type="text/javascript">
function handleImageChange(event) {
const selectedFile = event.target.files[0];
const displayImage = document.getElementById('displayImage');
if (selectedFile) {
displayImage.style.display = 'block';
displayImage.src = URL.createObjectURL(selectedFile);
} else {
displayImage.style.display = 'none';
displayImage.src = '';
}
// Hide the label after selecting an image
const label = document.querySelector('.custom-label');
label.style.display = 'none';
}
// word limitation start here
const textLimit = document.getElementById('text-limitation-error');
const publishBtn = document.getElementById('publish-btn');
let textInput2 = document.getElementById('textInput2');
textInput.addEventListener('input', updateWordCount);
// Function to update the word count
function updateWordCount() {
let text = textInput.value;
console.log('texts', text)
const words = text.trim().split(/\s+/); // Split by one or more whitespace characters
const wordCount = words.length;
console.log('wordcount', wordCount)
if (wordCount >= 30) {
textInput.style.background = 'rgb(255, 173, 173)';
//textInput.setAttribute("disabled", "true");
textLimit.innerText = `Please shorten the title to meet the character limit and try again.`;
textLimit.style.color = 'red';
publishBtn.setAttribute("disabled", "true")
} else {
textInput.style.background = 'white';
publishBtn.removeAttribute("disabled")
textLimit.innerText = '';
}
if (wordCount === 1) {
textInput2.classList.add('hidden');
} else {
textInput2.classList.remove('hidden');
textInput2.value = text.toLowerCase().replace(/\s+/g, '-');
textInput2.setAttribute('disabled', "true")
}
}
// Call the function initially to set the initial word count to 0
updateWordCount();
</script>
<?php include("include/footer.php"); ?>