Skip to content

Commit 5e40abf

Browse files
Add files via upload
1 parent 9b5d791 commit 5e40abf

14 files changed

+2767
-0
lines changed

.htaccess

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Options -Indexes
2+
3+
RewriteEngine On
4+
5+
RewriteCond %{REQUEST_FILENAME} !-f
6+
RewriteCond %{REQUEST_FILENAME} !-d
7+
RewriteCond %{REQUEST_URI} ^/(.+)/$
8+
RewriteCond %{DOCUMENT_ROOT}/%1.php -f
9+
RewriteRule ^(.*)/$ $1.php [L]

.travis.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
language: php
2+
php:
3+
- "7.0"
4+
- "5.6"
5+
- "5.5"
6+
- "5.4"
7+
- hhvm
8+
script: php tests.php

about.php

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
<?php include 'includes/header.php';?>
2+
<!-- Navigation Bar -->
3+
<?php include 'includes/navbar.php';?>
4+
<!-- Navigation Bar -->
5+
6+
<div class="container">
7+
<div class="row">
8+
<!-- Page Content -->
9+
<div class="col-md-8">
10+
<h1 class="page-header">About | Us </h1>
11+
Hi there!
12+
<br>
13+
This application is a NEWS PUBLISHING SYSTEM which allows users to post and manage various kinds of news content.<br>
14+
Or you can say a simple CMS.
15+
<br><br><br>
16+
17+
Full Project: <a href="https://www.github.com/anirbandutta9/NEWS-BUZZ" > NEWS_BUZZ </a>
18+
19+
<br><br><br><br>
20+
21+
22+
23+
24+
Main Features:
25+
<br><br>
26+
# Multiple user access: allows multiple type of users to login <br>
27+
# Functional Admin panel: allows all admins to manage their content properly with admin panel <br>
28+
# CRUD functionalities: allows all users to create,read,update and delete their content in a managed format <br>
29+
# Profile update option: allows users to update their profile/account details <br>
30+
# Secure registration and login option for users <br>
31+
# Trending news updates: allows user to view all trending news around the world (using google news api) <br>
32+
# Search news: option for search all content
33+
<br><br><br>
34+
35+
Tools used:
36+
<br><br>
37+
#Front-End: HTML, CSS <br>
38+
#Back-End: PHP <br>
39+
#DataBase: MySQL <br>
40+
<br><br><br>
41+
42+
Developed By: <br><br>
43+
Name: Anirban Dutta <br>
44+
Email: [email protected] <br>
45+
Website: www.anirbandutta.xyz <br>
46+
<br>
47+
<br>
48+
49+
50+
51+
</div>
52+
53+
<div class="col-md-4">
54+
55+
<?php include 'includes/sidebar.php';
56+
?><!-- Footer -->
57+
</div>
58+
</div>
59+
</div>
60+
<script src="js/jquery.js"></script>
61+
<script src="js/bootstrap.min.js"></script>
62+
63+
</body>
64+
</html>

composer.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "wixel/gump",
3+
"description": "A fast, extensible & stand-alone PHP input validation class that allows you to validate any data",
4+
"authors": [
5+
{
6+
"name": "Sean Nieuwoudt",
7+
"homepage": "https://wixelhq.com"
8+
},
9+
{
10+
"name": "Filis Futsarov",
11+
"homepage": "https://filis.me"
12+
}
13+
],
14+
"license": "MIT",
15+
"homepage": "https://wixelhq.com/",
16+
"autoload": {
17+
"files": ["gump.class.php"]
18+
}
19+
}

0 commit comments

Comments
 (0)