-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpost_article.php
More file actions
34 lines (30 loc) · 1.04 KB
/
post_article.php
File metadata and controls
34 lines (30 loc) · 1.04 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
<?php include 'header.php';?>
<br>
<div class="col-lg-6 col-lg-offset-3 well">
<div class="col-lg-12">
<h1 class="text-center" style="color:#8a2be2">Post an Article</h1>
<h4 class="text-center">--- <?php $y=isset($_GET['msg'])?$_GET['msg']:''; echo $y; ?> ---</h4>
</div>
<form class="form-group" method="POST" action="db.php?v=1" enctype="multipart/form-data">
<label>Heading :</label>
<input type="text" name="sub" class="form-control x">
<br>
<label>Category :</label>
<br>
<select class="form-control x" name="cate">
<option value="Computer Science">Computer Science</option>
<option value="Networking">Networking</option>
<option value="Artificial Intelligence">Artificial Intelligence</option>
<option value="Internet Of Things">Internet Of Things</option>
</select>
<br>
<label>Content :</label>
<br>
<textarea class="form-control x" rows="4" name="tarea"></textarea>
<br>
<label>Image Upload</label>
<input type="file" name="fp">
<br>
<input type="submit" name="sart" class="btn btn-lg btn-success x" value="Post Article">
</form>
</div>