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

Flannel Sleepwear – A Winter Wear Favorite


Flannel sleepwear is without a doubt one of the most popular ladies sleepwear styles. But do you have any idea what it is exactly? What it is made of? Flannel sleepwear is just one of the many ladies sleepwear styles that are popular today. But do you have any idea...

How to Achieve Personal Goals by Habitual Developments


You have to tackle the challenges that face you by adopting and applying things that work well towards the attainment of your personal goals. A habitual development assists you when trying to achieve goals. Article Tags: Personal Goals, Habitual Developments Source: Free Articles from ArticlesFactory.com

How To Notice A Difference In Your Skin


What is your main concern when it comes to buying skin care? For many it is knowing what to buy in the first place and do you go for a brand or something cheap? Botanical extracts are all the rage in beauty and skin care products, and for good reason....

What To Do In Order To Clear Acne


There are a vast range of acne products that are available on the market. Obviously you want to be able to ensure that what you buy will help to clear your skin without any harsh side-effects. There are several natural supplements for acne that could help reduce pimples. If you...

How Dental Veneers Can Bring You A New Outlook On Life With A New GlamSmile!


Discover the fast, cost affective and long lasting solution to your Cosmetic Dentistry needs. No longer do you need to suffer silently with Teeth that have Worn Enamel or are showing excessive Wear and Tear. Stained Teeth can now also be a thing of the past with the Glamsmile Porcelain...

Women's Robes Lingerie Guide


Women's robes are without a doubt one of the most useful ladies sleepwear styles available today. From refined and worldly to fresh and provocative, there are umpteenth varieties of robes in stock that suit virtually every taste and need. Here we will take a look at some of the more...

Lower The Costs of Going Out


For example, most restaurants-especially national franchises have their own website and and allows you to sign up as a “member” to their website and you get emails that alert you about special deals going on at their restaurant. Source: Free Articles from ArticlesFactory.com

The Answers To All Your Dental Implant Questions


We hear our dentist say Dental Implants and we shiver in fear. This is always due to not understanding the procedure. Once you discover the truth about things such as Technological advances, Procedures required, Time needed for it all and the stunning realistically looking results you will change your mind...

By Anthony Ricigliano - Rare Coins, History, and Investing


By Anthony Ricigliano - News And Advice by Anthony Ricigliano -- The study of coins, also known as numismatics, has its origins going back to the first exchange of the metal discs for the purpose of commerce. While still hotly debated, it’s likely that the first coin was minted circa...

Choosing Full Bras


These days, there is a great variety of brassiere alternatives. Great styles include everything from full bras and minimizer bras to push up bras and demi cup bras, the choice goes on and on! It can be awe-inspiring trying to determine the different bra styles. The essential thing to bear...

Search topic

Choosing Full Bras

These days, there is a great variety of brassiere alternatives. Great styles include everything from full bras and minimizer bras to push up bras and demi cup bras, the choice goes on and on! It can be awe-inspiring trying to determine the different bra styles. The essential thing to bear...

Learn more