Project Report: Realbiz Property Consultancy
Project Report: Realbiz Property Consultancy
PHP, in less than 20 lines of code, can store the IP address from which a page
request comes in a separate file, and then display the number of unique IP
addresses that visited a particular site. The person requesting the web page doesn't
know that PHP generated the page, because the counter text is part of the standard
HTML mark up language that the PHP code generated.
PHP makes web development easy, because all the code you need is contained
within the PHP framework.
MySQL
While PHP is great for developing web functionality, it is not a database. The
database of choice for PHP developers is MySQL, which acts like a filing clerk for
PHP-processed user information.
MySQL automates the most common tasks related to storing and retrieving
specific user information based on your supplied criteria.
MySQL is easily accessed from PHP, and they're commonly used together as they
work well hand in hand.
An added benefit is that PHP and MySQL run on various computer types and
operating systems, including Mac OS X, Windows-based PCs, and Linux.
WAMP SERVER
WampServer is a windows web development environment. It allows you to create
web applications with Apache, PHP and the MySQL as database. It also comes
with phpMyadmin to easily manage your databases.
PROJECT DETAIL
In this project, I have developed a website which is meant to provide all the users
information about the different property consultants in and around a region.
This project includes all the components of a good website like a user login page, a
user registration form, user sessions, hyperlinks, gallery etc.
Once the user enters his username and his password, it is checked whether he or
she are the registered users. If yes, then a session is created which solely unique to
each registered user.
Here we see that a session has been created
of a registered user sahil. Logout is a button given which closes the session for
sahil and links back to the home page containing the user login form.