You are on page 1of 18

SYSTEM DESIGN

3.3 System Requirements

Requirements regarding the installation of PHP Environment has been listed below

 WAMP Server

WAMP is a form of mini-server that can run on almost any Windows Operating System.
WAMP includes Apache 2, PHP 5 (SMTP ports are disabled), and MySQL (phpMyAdmin and
SQL item manager are installed to manage your databases) preinstalled.An icon on the taskbar
tray displays the status of WAMP, letting you know if; a) WAMP is running but no services are
opened (the icon will appear red), b) WAMP is running and one service is opened (the icon will
appear yellow) or c) WAMP is running with all services opened (the icon will appear white).
Apache and MySQL are considered to be services (they can be disabled by left-clicking on the
taskbar icon, guiding your cursor over the service you wish to disable and selecting "Stop
Service").
The files/web pages that are hosted on your WAMP server can be accessed by typing
http://localhost/ or http://127.0.0.1/ in the address bar of your web browser. WAMP must be
running in order to access either of the above addresses.
If you would like to share your files/web pages with others, click on the icon located on your
taskbar tray and select "Put Online." You must have access to the Internet in order to continue.
Send the people that you would like to give access to the files/web pages hosted on your WAMP
server IP Address. Your can find your IP address here:

 MYSQL as Database
 PHP as platform.
DATABASE DESIGN

3.3 Database Tables

Field Type NULL Key


Id Varchar(11) N0 ----------
Title Varchar(200) yes -----------
Description Text yes -----------
news_type Varchar(15) yes ------------
Image Varchar(200) yes ------------
systemdatetime timestamp yes ------------

Table 3.1 - Store table

Field Type NULL Key


Id Int(11) No Primary Key
FirstName Varchar(200) yes ----------
LastName Varchar(200) yes ----------
Email_id Varchar(200) yes
Uname Varchar(200) yes ----------
Pwd Varchar(200) yes ----------
Rpwd Varchar(200) yes ----------
Gender Varchar(200) yes ----------
Phno Int(12) yes ----------

Table 3.2 – Table for registration and login:Newsportal


Field Type NULL Key
C_id Int(11) No ---------
Name Varchar(30) yes ----------
Loc Varchar(30) yes ----------
Email Varchar(30) yes ----------
Message Varchar(30) yes Primary Key

Table 3.3 Contact table


DFD For News Portal

Maintain
Account News Read News
News
User
Administrator Portal
Updated System Feedback
DFD – 1
Fig.4.15:Database for register and login page
Future Scope
As the project comes up with some limitations which can be improved in future and further more
advancement can also be done. The different features that can be added are as follows:
 Videos of different news can be provided related to various fields like Entertainment,
International, National, Sports, Business etc.
 Reader can be alerted through e-mail, cell phones or other devices about availability of
any new news of their interest.
 Readers can easily forward interesting news items to others

You might also like