-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-1.php
39 lines (36 loc) · 1.58 KB
/
index-1.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
<!DOCTYPE html>
<html>
<!--This is the index file front end to allow the upload of a .zip file containing .txt formated articles. -->
<!-- It will uncompress them and turn them into a .csv file that can be imorted into a CMS like Drupal -->
<head>
<title>PLR-Importer</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</head>
<body>
<br />
<div class="container" style="width:500px;">
<h3 align="">PLR Importer - Alpha V1.0</h3><br />
<p>Save all your .txt PLR Articles in a zip file and name the zip file<br/>
with the catagory tag name for your articles.<br/>
Then Upload it here to have it converted into a .csv file that you can import into Drupal as Articles</p>
<form action="index_post.php" method="post" enctype="multipart/form-data">
<label>Please Select Zip File</label>
<input type="file" name="zip_file" />
<br />
<input type="submit" name="btn_zip" class="btn btn-info" value="Upload" />
</form>
<br />
<?php
if (isset($output)) {
echo $output;
}
?>
</div>
<br />
<div class="container" style="width:500px;">
Need hosting or a domain for your blog? <br/>
Check out <a href="https://mtbn.net">MTBN.NET</a>
</body>
</html>