MySQL Database Handling in PHP


Most ...
websites nowadays require data to be ... ...
and ... based on input from the user.
For example, a customer may need to log into a retail website to check his p Most interactive websites nowadays require data to be presented dynamically and interactively based on input from the user. For example, a customer may need to log into a retail website to check his purchasing history.
In this instance, the website would have stored two types of data in order for the customer to perform the check – the customer’s personal login details; and the customer’s purchased items. This data can be stored in two types of storage – flat files or databases.Flat files are only feasible in very low to low volume websites as flat files have 3 inherent weaknesses:1.The inability to index the data.
This makes it necessary to potentially read ALL the data sequentially. This is a major problem if there are a lot of records in the flat file because the time required to read the flat file is proportionate to the number of records in the flat file.2.The inability to efficiently control access by users to the data3.The inefficient storage of the data.
In most cases, the data would not be encrypted or compressed as this would exacerbate the problem no. 1 aboveThe alternative which is, in my opinion, the only feasible method, is to store the data in a database.
One of the most prevalent databases in use is MySQL. Data that is stored in a database can easily be indexed, managed and stored efficiently.
Besides that, most databases also provide a suite of accompanying utilities that allow the database administrator to maintain the database – for example, backup and restore, etc.Websites scripted using PHP are very well suited for the MySQL database as PHP has a custom and integrated MySQL module that communicates very efficiently with MySQL. PHP can also communicate with MySQL through the standard ODBC as MySQL is ODBC-compliant, However, this will not be as efficient as using the custom MySQL module for PHP.The rest of this article is a tutorial on how to use PHP to:1.Connect to a MySQL database2.Execute standard SQL statements against the MySQL databaseStarting a Session with MySQLBefore the PHP script can communicate with the database to query, insert or update the database, the PHP script will first need to connect to the MySQL server and specify which database in the MySQL server to operate on.The mysql_connect() and mysql_select_db() functions are provided for this purpose.
In order to connect to the MySQL server, the server name/address; a username; and a valid password is required. Once a connection is successful, the database needs to be specified.The following 2 code excerpts illustrate how to perform the server connection and database selection:@mysql_connect("[servername]", "[username]", "[password]") or die("Cannot connect to DB!");@mysql_select_db("[databasename]") or die("Cannot select DB!");The @ operator is used to suppress any error messages that mysql_connect() and mysql_select_db() functions may produce if an error occurred.
The die() function is used to end the script execution and display a custom error message.Executing SQL Statements against a MySQL databaseOnce the connection and database selection is successfully performed, the PHP script can now proceed to operate on the database using standard SQL statements. The mysql_query() function is used for executing standard SQL statements against the database.
In the following example, the PHP script queries a table called tbl_login in the previously selected database to determine if a username/password pair provided by the user is valid.Assumption:The tbl_login table has 3 columns named login, password, last_logged_in. The last_logged_in column stores the time that the user last logged into the system.// The $username and $passwd variable should rightly be set by the login form// through the POST method.
For the purpose of this example, we’re manually coding it.$username = “john”;$passwd = “mypassword”;// We generate a SELECT SQL statement for execution.$sql="SELECT * FROM tbl_login WHERE login = '".$username."' AND password = '".$passwd."'";// Execute the SQL statement against the currently selected database.// The results will be stored in the $r variable.$r = mysql_query($sql);// After the mysql_query() command executes, the $r variable is examined to// determine of the mysql_query() was successfully executed.if(!$r) { $err=mysql_error(); print $err; exit();}// If everything went well, check if the query returned a result – i.e. if the username/password// pair was found in the database.
The mysql_affected_rows() function is used for this purpose.// mysql_affected_rows() will return the number of rows in the database table that was affected// by the last queryif(mysql_affected_rows()==0){ print "Username/password pair is invalid. Please try again.";}else {// If successful, read out the last logged in time into a $last variable for display to the user $row=mysql_fetch_array($r); $last=$row["last_logged_in"]; print “Login successful.
You last logged in at ”.$last.”.”;}The above example demonstrated how a SELECT SQL statement is executed against the selected database. The same method is used to execute other SQL statements (e.g.
UPDATE, INSERT, DELETE, etc.) against the database using the mysql_query() and mysql_affected_rows() functions. Source: Free Articles from ArticlesFactory.com .

Top blog stories

A review of Idmobile.com

Idmobile.com offers both pay-as-you-go and contract plans. Pay-as-you-go plans are ideal for customers who don't want to be tied down to a long-term contract, and they can purchase bundles of data, minutes, and texts as and when they need them.

see post

A review of Idmobile.com

Idmobile.com offers both pay-as-you-go and contract plans. Pay-as-you-go plans are ideal for customers who don't want to be tied down to a long-term contract, and they can purchase bundles of data, minutes, and texts as and when they need them.

see post

AO.co: Online Shopping Made Simple

AO.co is a trusted expert in TVs, washing machines, clothes dryers and other household appliances. AO.com is one of the largest retailers in the UK and it specializes in electronics, clothes and home furniture.

see post

For our people.

At Three, we believe phones are good. They just make life better. Easier. And more fun. But we all need to find a balance that works for us. Our mission is to help our customers use their phones to live their best lives.

see post

We make your life easier

We make your life easier Since 1992, we’ve been helping customers get the best deal on their dream phone. We firmly believe in giving you the highest quality, for the lowest price. That’s why we work with three of the UK’s leading networks to do all the haggling for you,...

see post

FOUR BRANDS BECOME ONE. CURRYS.

Currys PLC is a leading omnichannel retailer of technology products and services, operating through 800+ stores and 16 websites in seven countries.

see post

Halfords - Quicker, Easier, and Convenient.

At Halfords, we're all about the journey. With more than 700 stores with over 10,000 colleagues, we're the UK's leading retailer of automotive and cycling products. We are also the leading operator in MOT, tyres, car servicing and car repairs - pleasing more than 750,000 customers every year.

see post

FOUR BRANDS BECOME ONE. CURRYS.

Currys PLC is a leading omnichannel retailer of technology products and services, operating through 800+ stores and 16 websites in seven countries.

see post

Sky - Epic. Endless. Entertainment.

It's important to us that everyone gets great customer service and can enjoy our products, no matter their level of sight. So, if you're blind, partially sighted or struggle to see or read the screen, we’ve a range of features to help you get the most from our products and...

see post

Nasty Gal - We exist for the “girl in progress”.

Look iconic, without the hassle— using Nasty Gal discount codes, you can shop your favorite pieces for way less by simply entering one of our promotional codes (of your choice) at the checkout. From delivery offers, to promo deals, we keep ‘em coming, so you always have the offer you...

see post

Digital Publishing From Past to Now

The Covid-19 has caused the school and universities to shut down around the world creating a major issue in Learning and Education. As this virus spreads through the interaction and if social distanci... The Covid-19 has caused the school and universities to shut down around the world creating a major...

see post

Why it’s Important to Manage Your Holiday Calendars?

A printable calendar 2021 is a prominent online platform where you download printable calendars of your choice. These calendars can be customized as per our client requirement with photo, text, logo, or any other image. If you are thinking of planning a dream vacation tour with family and kids but...

see post

Make in India Campaign Objectives & Advantages


Make in India marketing campaign released via Prime Minister Narendra Modi in September 2014. It is an initiative to make India’s name on the top business investors list all over the globe. It is a large opportunity for all the traders to create their enterprise in any field anywhere inside...

Swachh Bharat Mission Impact In India


The Swachh Bharat Mission Program is an initiative of the national government and is coordinated with the aid of the MDWS. However, responsibility for its implementation is with the state and rural local governments.  The Swachh Bharat Mission Program is an initiative of the national government and is coordinated with...

PMKVY: Jobs For Indian Citizens


The government of India introduces many programs to enhance the lifestyles and living requirements of the Indians. Pradhan Mantri Kaushal Vikas Yojna (PMKVY) is one of the Applications the Government of India The government of India introduces many programs to enhance the lifestyles and living requirements of the Indians. Pradhan...

Website for Digital India Programme


Digital India is an ambitious challenge for the Government of India to digitally empowered inside the area of the era. This task was launched on 1 July 2015 by means of Shri. Narendra Modi. Digital India is an ambitious challenge for the Government of India to digitally empowered inside the...

Digi Locker


DigiLocker gives a committed private storage space, linked to each resident’s Aadhaar number. DigiLocker may be used to soundly save e-files as well as keep Uniform Resource Identifier (URI) hyperlink of e-files issued by using diverse company departments. The e-Sign facility provided as a part of the DigiLocker machine can...

Latest Politics News | Politics News Online


Liberals Latest Politics news are checking out regulations in  which drive tech giants like Facebook and Google to share promotion dollars with community media to Restrict the spread of coronavirus. ‘It was so thick’: B.C. girl’s huge spider Image horrifies, but professionals say to not fear 4075 Read One of...

Pradhan Mantri Atal Pension Yojana


The interim price range has introduced much good news for the loads and for folkss who belong to the weaker sections of the society along with folks that really want welfare schemes. One such welfare scheme commenced through the contemporary government is Atal Pension Yojana. Atal Pension Yojana is top-notch...

US -China fight over Covid 19


In current scenario ,US -China relations have become worse than even before.This article is analysis of trade sanctions between US -China,Covid -19 effect on US and upcoming presidential election in US. The Trump administration and the Chinese government are going head to head   over the Coronavirus. Xi Jinping and Donald...

Hunter S. Thompson: the top 5 adventures


Hunter S. Thompson made a life's work from pursuing the American dream. Read on as we explore a handful of his greatest adventures.  From politics to literature, to getting lost in the wilds of Las Vegas, nobody has used their allotted time on the planet quite like Hunter S. Thompson. ...

Standard of Living Essay


The Standard of living is the level of material goods, wealth, necessities, and comfort available to a particular socioeconomic group, mostly a nation. It includes factors like poverty rate, income, employment availability, and quality, Gross Domestic Product, political and economic stability, national economic growth, house affordability and quality, the expectancy...

Search topic

Standard of Living Essay

The Standard of living is the level of material goods, wealth, necessities, and comfort available to a particular socioeconomic group, mostly a nation. It includes factors like poverty rate, income, employment availability, and quality, Gross Domestic Product, political and economic stability, national economic growth, house affordability and quality, the expectancy...

Learn more