Webmonkey: programming: PHP/MySQL Tutorial                                      Pagina 1 di 10




webmonkey/programming/
PHP/MySQL Tutorial
by Graeme Merrall

      Welcome to the third and final lesson for this tutorial. If you've
      gone through Lesson 1 and Lesson 2, you already know the
      essentials for installing and writing useful scripts with MySQL
      and PHP. We're going to look at some useful PHP functions that
      should make your life a lot easier. First, let's look at include
      files.

      We all know the basics of includes, right? Contents of an
      external file are referenced and imported into the main file. It's
      pretty easy: You call a file and it's included. When we do this in
      PHP there are two functions we need to talk about: include() and
      require(). The difference between these two functions is subtle
      but important, so let's take a closer look. The require() function
      works in a XSSI-like way; files are included as part of the
      original document as soon as that file is parsed, regardless of
      its location in the script. So if you decide to place a require()
      function inside a conditional loop, the external file will be
      included even if that part of the conditional loop is false.

      The include() function imports the referenced file each time it is
      encountered. If it's not encountered, PHP won't bother with it.
      This means that you can use include in loops and conditional
      statements, and they'll work exactly as planned.

      Finally, if you use require() and the file you're including does not
      exist, your script will halt and produce an error. If you use
      include(), your script will generate a warning, but carry on. You
      can test this yourself by trying the following script. Run the
      script, then replace include() with require() and compare the
      results.

      <html>

      <body>



      <?php

      include("emptyfile.inc");

      echo "Hello World";

      ?>



      </body>

      </html>




      I like to use the suffix .inc with my include files so I can
      separate them from normal PHP scripts. If you do this, make
      sure that you set your Web server configuration file to
      parse .inc files as PHP files. Otherwise, hackers might be able to




http://hotwired.lycos.com/webmonkey/templates/print_template.htmlt?meta=/webmo...   11/11/2003
Webmonkey: programming: PHP/MySQL Tutorial                                              Pagina 2 di 10



      guess the name of your include files and display them through
      the browser as text files. This could be bad if you've got
      sensitive information - such as database passwords - contained
      in the includes.

      So what are you going to do with include files? Simple! Place
      information common to all pages inside them. Things like HTML
      headers, footers, database connection code, and user-defined
      functions are all good candidates. Paste this text into a file
      called header.inc.

     <?php

     $db = mysql_connect("localhost", "root");

     mysql_select_db("mydb",$db);

     ?>

     <html>

     <head>

     <title>

     <?php echo $title ?>

     </title>

     </head>

     <body>

     <center><h2><?php echo $title ?></h2></center>



      Then create another file called footer.txt that contains some
      appropriate closing text and tags.

      Now let's create a third file containing the actual PHP script. Try
      the following code, making sure that your MySQL server is
      running.


     <?php

     $title = "Hello World";

     include("header.inc");

     $result = mysql_query("SELECT * FROM employees",$db);

     echo "<table border=1>n";

     echo "<tr><td>Name</td><td>Position</tr>n";

     while ($myrow = mysql_fetch_row($result)) {

          printf("<tr><td>%s %s</td><td>%s</tr>n", $myrow[1], $myrow[2], $myrow[3]);

     }

     echo "</table>n";

     include("footer.inc");

     ?>




      See what happens? The include files are tossed into the main
      file and then the whole thing is executed by PHP. Notice how
      the variable $title was defined before header.inc is referenced.




http://hotwired.lycos.com/webmonkey/templates/print_template.htmlt?meta=/webmo...         11/11/2003
Webmonkey: programming: PHP/MySQL Tutorial                                        Pagina 3 di 10



      Its value is made available to the code in header.inc; hence, the
      title of the page is changed. You can now use header.inc across
      all your PHP pages, and all you'll have to do is change the value
      of $title from page to page.

      Using a combination of includes, HTML, conditional statements,
      and loops, you can create complex variations from page to page
      with an absolute minimum of code. Includes become especially
      useful when used with functions, as we'll see down the road.

      On to the exciting world of data validation.

     Simple Validation

     Imagine for a moment that we've got our database nicely laid out and we're now
     requesting information from users that will be inserted into the database. Further,
     let's imagine that you have a field in your database waiting for some numeric input,
     such as a price. Finally, imagine your application falling over in a screaming heap
     because some smart aleck put text in that field. MySQL doesn't want to see text in
     that portion of your SQL statement - and it complains bitterly.

     What to do? Time to validate.

     Validation simply means that we'll examine a piece of data, usually from an HTML
     form, and check to make sure that it fits a certain model. This can range from
     ensuring that a element is not blank to validating that an element meets certain
     criteria (for example, that a numeric value is stipulated or that an email address
     contains an @ for an email address).

     Validation can be done on the server side or on the client side. PHP is used for
     server-side validation, while JavaScript or another client-based scripting language
     can provide client-side validation. This article is about PHP, so we're going to
     concentrate on the server end of things. But if you're looking for some ready-made,
     client-side validation scripts, check out the Webmonkey code library.

     Let's ignore our database for the moment and concentrate on PHP validation. If you
     wish, you can add additional fields to our employee database quite simply by using
     the MySQL ALTER statement - that is, if you want to commit to the values that we'll
     validate.

     There are several useful PHP functions we can use to validate our data, and they
     range from simple to highly complex. A simple function we could use might be strlen
     (), which tells us the length of the variable.


     A more complex function would be ereg(), which uses full regular expression
     handling for complex queries. I won't delve into the complexities of regex here, as
     entire books have been written on the subject, but I will provide some examples on
     the next page.

     Let's start with a simple example. We'll check to see whether a variable does or
     does not exist.

     <html>

     <body>

     <?php

     if ($submit) {




http://hotwired.lycos.com/webmonkey/templates/print_template.htmlt?meta=/webmo...   11/11/2003
Webmonkey: programming: PHP/MySQL Tutorial                                         Pagina 4 di 10



          if (!$first || !$last) {

                  $error = "Sorry! You didn't fill in all the fields!";

                  } else {

                             // process form

                             echo "Thank You!";

                  }



     }



     if (!$submit || $error) {

          echo $error;

          ?>

          <P>

          <form method="post" action="<?php echo $PHP_SELF ?>">

          FIELD 1: <input type="text" name="first" value="<?php echo $first ?>">

          <br>

          FIELD 2: <input type="text" name="last" value="<?php echo $last ?>">

          <br>

          <input type="Submit" name="submit" value="Enter Information">

          </form>

          <?php

     } // end if

     ?>



     </body>

     </html>



     The keys to this script are the nested conditional statements. The first checks to see
     whether the Submit button has been pressed. If it has, it goes on to check that both
     the variables $first and $last exist. The || symbol means "or" and the ! symbol
     means "not." We could also rewrite the statement to say, "If $first does not exist or
     $last does not exist, then set $error to the following."

     Next, let's extend things a little by checking to see whether a string is a certain
     length. This would be ideal for passwords, since you don't want some lazy user
     entering a password of only one or two letters. You'd rather it be, say, six or more
     characters.

     The function for this is, as you already know, strlen(). It simply returns a number
     equal to the number of characters in the variable being tested. Here, I modified the
     script above to check the length of $first and $last.

     <html>

     <body>

     <?php

     if ($submit) {

          if (strlen($first) < 6 || strlen($last) < 6) {




http://hotwired.lycos.com/webmonkey/templates/print_template.htmlt?meta=/webmo...     11/11/2003
Webmonkey: programming: PHP/MySQL Tutorial                                           Pagina 5 di 10



                  $error = "Sorry! You didn't fill in all the fields!";

                  } else {

                             // process form

                             echo "Thank You!";

                  }



     }



     if (!$submit || $error) {

          echo $error;

          ?>

          <P>

          <form method="post" action="<?php echo $PHP_SELF ?>">

          FIELD 1: <input type="text" name="first" value="<?php echo $first ?>">

          <br>

          FIELD 2: <input type="text" name="last" value="<?php echo $last ?>">

          <br>

          <input type="Submit" name="submit" value="Enter Information">

          </form>

          <?php

     } // end if

     ?>



     </body>

     </html>



     Run this script and try entering six or fewer letters to see what happens. It's simple
     yet quite effective.

     Not-So-Simple Validation

     Let's talk a bit about using regular expressions with the ereg() and eregi() functions.
     As I said earlier, these can be either quite complex or very simple, depending on
     what you need.

     Using regular expressions, you can examine a string and intelligently search for
     patterns and variations to see whether they match the criteria you set. The most
     common of these involves checking whether an email address is valid (although, of
     course, there's no fail-safe way of doing this).

     Rather than delve into the mysteries of regular expressions, I'll provide some
     examples. You can use the same form we created on the previous page - just paste
     in the lines below to see how they work.

     First, let's make sure that text only has been entered into a form element. This
     regular expression tests true if the user has entered one or more lowercase
     characters, from a to z. No numbers are allowed:




http://hotwired.lycos.com/webmonkey/templates/print_template.htmlt?meta=/webmo...       11/11/2003
Webmonkey: programming: PHP/MySQL Tutorial                                                Pagina 6 di 10



            if (!ereg("[a-Z]", $first) || !ereg("[a-Z]", $last)) {


     Now, let's extend this expression to check whether the string is four to six
     characters in length. Using [[:alpha:]] is an easy way to check for valid alphabetic
     characters. The numbers in the braces check for the number of occurrences. And
     note that the ^ and $ indicate the beginning and end of the string.

            if (!ereg("^[[:alpha:]]{4,6}$", $first) || !ereg("^[[:alpha:]]{4,6}$", $last)) {


     Finally, let's build a regular expression that will check an email address' validity.
     There's been plenty of discussion about the effectiveness of checking for email
     addresses in this way. Nothing's completely foolproof, but what I have below works
     pretty well.

     I took this gem from the PHP mailing list. It's a great resource - use it. And yes, this
     is as scary as it looks.

               if (!ereg('^[-!#$%&'*+./0-9=?A-Z^_`a-z{|}~]+'.

     '@'.

     '[-!#$%&'*+/0-9=?A-Z^_`a-z{|}~]+.'.

     '[-!#$%&'*+./0-9=?A-Z^_`a-z{|}~]+$', $last)) {



     Don't spend too much time looking at this. Just move on to the next page.

     Functions

     Enjoy that last regex expression? Fun, wasn't it? Wouldn't it be even more fun to
     enter that chunk on a dozen different pages that need to process email addresses?!
     Think about the joy of finding a typo in that mess - and doing it a dozen times no
     less. But of course, there's a better way.

     Remember when we talked about include files earlier in this lesson? They'll allow us
     to create a piece of code like the email checker and include it multiple times across
     several pages. This way, when we want to change the code, we need edit only one
     file, not many.

     But if we want to get this done, we'll have to use functions.

     We've already used functions plenty of times. Every time we query the database or
     check the length of a string we're using functions. These functions are built into
     PHP. If you're a keen coder, you can extend PHP with your own customized
     functions. But that's a bit advanced for this tutorial. Instead we'll create functions
     that will reside within our PHP script.

     A function is simply a block of code that we pass one or more values to. The
     function then processes the information and returns a value. The function can be as
     simple or complex as we like, but as long as we can pass a value in and get one
     out, we don't really care how complex it is. That's the beauty of functions.

     Functions in PHP behave similarly to functions in C. When we define the functions,
     we must specify what values the function can expect to receive. It's tricky to get a
     handle on at first, but it prevents weird things from happening down the road. This
     is done because the variables inside a function are known as private variables. That
     is, they exist only inside the function. You may, for instance, have a variable in your
     script called $myname. If you created a function and expected to use the same $myname
     variable (with the same value), it wouldn't work. Alternatively, you could have the




http://hotwired.lycos.com/webmonkey/templates/print_template.htmlt?meta=/webmo...              11/11/2003
Webmonkey: programming: PHP/MySQL Tutorial                                           Pagina 7 di 10



     variable $myname in your script and also create another variable called $myname in your
     function, and the two would co-exist quite happily with separate values. I do not
     recommend doing this, however! When you come back and edit it six months later,
     you'll be breaking things left and right. There are exceptions to this rule as with all
     things, but that's outside the scope of this article.

     So let's create a function. We'll start simply. We need to give the function a name
     and tell it what variables to expect. We also need to define the function before we
     call it.

     <html>

     <body>

     <?php



     function   addnum($first, $second) {

                $newnum = $first + $second;

                return $newnum;

     }

     echo addnum(4,5);

     ?>



     </body>

     </html>



     That's it! First, we created our function. Notice how we defined two new variables,
     called $first and $second. When we call the function, each variable is assigned a
     value based on the order in which it appears in the list - 4 goes to $first, 5 to
     $second. Then we simply added the two numbers together and returned the result.
     "Return" here simply means to send the result back. At the end of the script we
     print the number 9.

     Let's create something that's more useful to our database application. How about
     something that gracefully handles errors? Try this:

     <html>

     <body>

     <?php



     function   do_error($error) {

                echo   "Hmm, looks like there was a problem here...<br>";

                echo "The reported error was $error.n<br>";

                echo "Best you get hold of the site admin and let her know.";

                die;

     }



     if (!$db = @mysql_connect("localhost","user", "password")) {

                $db_error = "Could not connect to MySQL Server";

                do_error($db_error);




http://hotwired.lycos.com/webmonkey/templates/print_template.htmlt?meta=/webmo...       11/11/2003
Webmonkey: programming: PHP/MySQL Tutorial                                          Pagina 8 di 10



     }

     ?>



     </body>

     </html>



     Before running this, try shutting down MySQL or using a bogus username or
     password. You'll get a nice, useful error message. Observant readers will notice the
     @ symbol in front of mysql_connect(). This suppresses error messages so that you get
     the information only from the function. You'll also see we were able to pass a
     variable into the function, which was defined elsewhere.

     Remember that I said functions use their own private variables? That was a little
     white lie. In fact, you can make variables outside of a function accessible to the
     function. You might create a function to query a database and display a set of
     results over several pages. You don't want to have to pass the database connection
     identifier into the function every time. So in this situation, you can make connection
     code available as a global variable. For example:

     <html>

     <body>

     <?php



     function   db_query($sql) {

                global $db;

                $result = mysql_query($sql,$db);

                return $result;

     }



     $sql = "SELECT * FROM mytable";

     $result = db_query($sql);

     ?>



     </body>

     </html>



     This is a basic function, but the point is that you don't need to send $db through
     when you call the function - you can make it available using the word global. You
     can define other variables as global in this statement, just separate the variable
     names by a comma.

     Finally, you can look like a real pro by using optional function variables. Here, the
     key is to define the variable to some default in the function, then when you call the
     function without specifying a value for the variable, the default will be adopted. But
     if you do specify a value, it will take precedence.

     Confused? For example, when you connect to a database, you nearly always
     connect to the same server and you'll likely use the same username and password.
     But sometimes you'll need to connect to a different database. Let's take a look.




http://hotwired.lycos.com/webmonkey/templates/print_template.htmlt?meta=/webmo...      11/11/2003
Webmonkey: programming: PHP/MySQL Tutorial                                            Pagina 9 di 10



     <html>

     <body>

     <?php



     function   db_connect($host = "localhost", $user="username", $pass="graeme") {

                $db = mysql_connect($host, $username, $password);

                return $db;

     }



     $old_db = db_connect();



     $new_host = "site.com";

     $new_db = db_connect($new_host);

     ?>



     </body>

     </html>



     Isn't that cool? The variables used inside the function were defined when the
     function was defined. The first time the function is called, the defaults are used. The
     second time, we connect to a new host, but with the same username and password.
     Great stuff!

     Think about where you could use other functions in your code. You could use them
     for data checking, performing routine tasks, and so on. I use them a lot when
     processing text for display on a Web page. I can check, parse, and modify the text
     to add new lines and escape HTML characters in one fell swoop.

     Now all that's left to do is to impart some words of wisdom.

     Closing Advice

     When it comes to databasing, there's a lot to learn. If you haven't done it already,
     find a good book about database design and learn to put together a solid database -
     on any platform. It's an invaluable skill and it will save you plenty of time and
     headache in the long run. Also, learn about MySQL. It's a complex but interesting
     database with a wealth of useful documentation. Learn about table structure, data
     types, and SQL. You can actually achieve some pretty impressive stuff if you know
     enough SQL.

     Finally, there's PHP. The PHP Web site has nearly everything you need, from a
     comprehensive manual to mailing-list archives to code repositories. An excellent
     way to learn about PHP is to study the examples used in the manual and to check
     out the code archives. Many of the posted scripts consist of functions or classes that
     you can use for free in your own scripts without having to reinvent the wheel.
     Additionally, the mailing list is an excellent spot to check out if you get stuck. The
     developers themselves read the list and there are plenty of knowledgeable people
     there who can help you along the way.

     Good luck and good coding!




http://hotwired.lycos.com/webmonkey/templates/print_template.htmlt?meta=/webmo...       11/11/2003
Webmonkey: programming: PHP/MySQL Tutorial                                               Pagina 10 di 10




       Graeme Merrall works in New Zealand for KC Multimedia, an Internet/intranet design company.
       While sometimes being forced to use ASP, he enjoys spending his time coding in PHP, keeping
       the grass trimmed, and scaring his work mates with song lyrics repeated out of context.




Feedback | Help | About Us | Jobs | Advertise | Privacy Statement | Terms of Service


Copyright © 1994-2003 Wired Digital Inc., a Lycos Network site. All rights reserved.




http://hotwired.lycos.com/webmonkey/templates/print_template.htmlt?meta=/webmo...            11/11/2003

More Related Content

PDF
tut0000021-hevery
PDF
&lt;img src="../i/r_14.png" />
PPTX
Wt unit 5
PPT
Overview of PHP and MYSQL
PPTX
C#Web Sec Oct27 2010 Final
PPT
Secure Ftp Java Style Rev004
PDF
Javascript Best Practices
PDF
jQuery Proven Performance Tips & Tricks
tut0000021-hevery
&lt;img src="../i/r_14.png" />
Wt unit 5
Overview of PHP and MYSQL
C#Web Sec Oct27 2010 Final
Secure Ftp Java Style Rev004
Javascript Best Practices
jQuery Proven Performance Tips & Tricks

What's hot (18)

PDF
Design patterns revisited with PHP 5.3
PPT
WordPress and Ajax
PPT
Installation of Joomla on Windows XP
PDF
Html 5 in a big nutshell
PPT
Automated Testing With Watir
PPT
Php Presentation
PDF
Python Flask Tutorial For Beginners | Flask Web Development Tutorial | Python...
PPT
High Performance Ajax Applications
PDF
Selenium for-ops
PDF
BDD - Writing better scenario
PDF
Ajax Security
PPT
Java script
PDF
How to make Ajax work for you
ODP
Ant User Guide
PDF
Web Projects: From Theory To Practice
PPT
Seam Introduction
PDF
Debugging - Figuring it out yourself (WordCamp Dublin 2019)
KEY
Mobile HTML, CSS, and JavaScript
Design patterns revisited with PHP 5.3
WordPress and Ajax
Installation of Joomla on Windows XP
Html 5 in a big nutshell
Automated Testing With Watir
Php Presentation
Python Flask Tutorial For Beginners | Flask Web Development Tutorial | Python...
High Performance Ajax Applications
Selenium for-ops
BDD - Writing better scenario
Ajax Security
Java script
How to make Ajax work for you
Ant User Guide
Web Projects: From Theory To Practice
Seam Introduction
Debugging - Figuring it out yourself (WordCamp Dublin 2019)
Mobile HTML, CSS, and JavaScript

Viewers also liked (20)

DOC
New Study Of Gita Nov 14 Dr Shriniwas J. Kashalikar
PPT
Einstein And Relativity
PDF
InTechnology InSpire Newsletter - Issue 7
PPS
Televisión con desnudos
PDF
Superliving Dr
PPT
DATA Grad Brian Evans
PDF
Bapinger Launching
PDF
Networking--2009
DOCX
Case Solution for London Youth Symphony
PDF
Automating Stimulus Fund Reporting: How New Technologies Simplify Federal Rep...
PDF
Rethinking Relationships in a Global Economy
DOC
COVER LETTER TO MINISTERS, SENATORS, ADVOCATES
PDF
The Impact of Lean on Consumer Product Manufacturers
PDF
Winter%200405%20-%20Advanced%20Javascript
PPTX
Ideas For Characters
PDF
Igor Kachalov's $8k concept
DOC
B U N D I N G O R B I N D I N G Dr
PDF
Nona Veverseviciene_ QuickBooks Certificate
PDF
underground-php-oracle-manual
New Study Of Gita Nov 14 Dr Shriniwas J. Kashalikar
Einstein And Relativity
InTechnology InSpire Newsletter - Issue 7
Televisión con desnudos
Superliving Dr
DATA Grad Brian Evans
Bapinger Launching
Networking--2009
Case Solution for London Youth Symphony
Automating Stimulus Fund Reporting: How New Technologies Simplify Federal Rep...
Rethinking Relationships in a Global Economy
COVER LETTER TO MINISTERS, SENATORS, ADVOCATES
The Impact of Lean on Consumer Product Manufacturers
Winter%200405%20-%20Advanced%20Javascript
Ideas For Characters
Igor Kachalov's $8k concept
B U N D I N G O R B I N D I N G Dr
Nona Veverseviciene_ QuickBooks Certificate
underground-php-oracle-manual

Similar to &lt;b>PHP&lt;/b>/MySQL &lt;b>Tutorial&lt;/b> webmonkey/programming/ (20)

PPTX
Quick beginner to Lower-Advanced guide/tutorial in PHP
PDF
Php summary
PPT
slidesharenew1
PPT
My cool new Slideshow!
PPT
Php with my sql
PPT
Php mysql
PPT
PHP - Introduction to PHP Date and Time Functions
PPT
Intro to php
PPTX
Php with mysql ppt
PDF
Phpbasics
PDF
Sperimentazioni di Tecnologie e Comunicazioni Multimediali: Lezione 5
PPTX
php is the most important programming language
PPT
PHP - Introduction to PHP Fundamentals
PPT
php 1
PPTX
Php mysql classes in navi-mumbai,php-mysql course provider-in-navi-mumbai,bes...
KEY
Introduction to php
PPT
Introducation to php for beginners
PPTX
An introduction to PHP : PHP and Using PHP, Variables Program control and Bui...
Quick beginner to Lower-Advanced guide/tutorial in PHP
Php summary
slidesharenew1
My cool new Slideshow!
Php with my sql
Php mysql
PHP - Introduction to PHP Date and Time Functions
Intro to php
Php with mysql ppt
Phpbasics
Sperimentazioni di Tecnologie e Comunicazioni Multimediali: Lezione 5
php is the most important programming language
PHP - Introduction to PHP Fundamentals
php 1
Php mysql classes in navi-mumbai,php-mysql course provider-in-navi-mumbai,bes...
Introduction to php
Introducation to php for beginners
An introduction to PHP : PHP and Using PHP, Variables Program control and Bui...

More from tutorialsruby (20)

PDF
&lt;img src="../i/r_14.png" />
PDF
TopStyle Help &amp; &lt;b>Tutorial&lt;/b>
PDF
The Art Institute of Atlanta IMD 210 Fundamentals of Scripting &lt;b>...&lt;/b>
PDF
&lt;img src="../i/r_14.png" />
PDF
&lt;img src="../i/r_14.png" />
PDF
Standardization and Knowledge Transfer – INS0
PDF
xhtml_basics
PDF
xhtml_basics
PDF
xhtml-documentation
PDF
xhtml-documentation
PDF
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
PDF
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
PDF
HowTo_CSS
PDF
HowTo_CSS
PDF
BloggingWithStyle_2008
PDF
BloggingWithStyle_2008
PDF
cascadingstylesheets
PDF
cascadingstylesheets
&lt;img src="../i/r_14.png" />
TopStyle Help &amp; &lt;b>Tutorial&lt;/b>
The Art Institute of Atlanta IMD 210 Fundamentals of Scripting &lt;b>...&lt;/b>
&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />
Standardization and Knowledge Transfer – INS0
xhtml_basics
xhtml_basics
xhtml-documentation
xhtml-documentation
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
HowTo_CSS
HowTo_CSS
BloggingWithStyle_2008
BloggingWithStyle_2008
cascadingstylesheets
cascadingstylesheets

Recently uploaded (20)

PDF
Be ready for tomorrow’s needs with a longer-lasting, higher-performing PC
PDF
Secure Java Applications against Quantum Threats
PDF
State of AI in Business 2025 - MIT NANDA
PDF
Fitaura: AI & Machine Learning Powered Fitness Tracker
PPTX
Report in SIP_Distance_Learning_Technology_Impact.pptx
PDF
FASHION-DRIVEN TEXTILES AS A CRYSTAL OF A NEW STREAM FOR STAKEHOLDER CAPITALI...
PDF
Optimizing bioinformatics applications: a novel approach with human protein d...
PDF
Technical Debt in the AI Coding Era - By Antonio Bianco
PDF
GDG Cloud Southlake #45: Patrick Debois: The Impact of GenAI on Development a...
PPTX
Blending method and technology for hydrogen.pptx
PPTX
From Curiosity to ROI — Cost-Benefit Analysis of Agentic Automation [3/6]
PDF
Intravenous drug administration application for pediatric patients via augmen...
PPT
Overviiew on Intellectual property right
PDF
EGCB_Solar_Project_Presentation_and Finalcial Analysis.pdf
PPTX
Slides World Game (s) Great Redesign Eco Economic Epochs.pptx
PPTX
Strategic Picks — Prioritising the Right Agentic Use Cases [2/6]
PPTX
How to use fields_get method in Odoo 18
PDF
Addressing the challenges of harmonizing law and artificial intelligence tech...
PDF
CCUS-as-the-Missing-Link-to-Net-Zero_AksCurious.pdf
PDF
Domain-specific knowledge and context in large language models: challenges, c...
Be ready for tomorrow’s needs with a longer-lasting, higher-performing PC
Secure Java Applications against Quantum Threats
State of AI in Business 2025 - MIT NANDA
Fitaura: AI & Machine Learning Powered Fitness Tracker
Report in SIP_Distance_Learning_Technology_Impact.pptx
FASHION-DRIVEN TEXTILES AS A CRYSTAL OF A NEW STREAM FOR STAKEHOLDER CAPITALI...
Optimizing bioinformatics applications: a novel approach with human protein d...
Technical Debt in the AI Coding Era - By Antonio Bianco
GDG Cloud Southlake #45: Patrick Debois: The Impact of GenAI on Development a...
Blending method and technology for hydrogen.pptx
From Curiosity to ROI — Cost-Benefit Analysis of Agentic Automation [3/6]
Intravenous drug administration application for pediatric patients via augmen...
Overviiew on Intellectual property right
EGCB_Solar_Project_Presentation_and Finalcial Analysis.pdf
Slides World Game (s) Great Redesign Eco Economic Epochs.pptx
Strategic Picks — Prioritising the Right Agentic Use Cases [2/6]
How to use fields_get method in Odoo 18
Addressing the challenges of harmonizing law and artificial intelligence tech...
CCUS-as-the-Missing-Link-to-Net-Zero_AksCurious.pdf
Domain-specific knowledge and context in large language models: challenges, c...

&lt;b>PHP&lt;/b>/MySQL &lt;b>Tutorial&lt;/b> webmonkey/programming/

  • 1. Webmonkey: programming: PHP/MySQL Tutorial Pagina 1 di 10 webmonkey/programming/ PHP/MySQL Tutorial by Graeme Merrall Welcome to the third and final lesson for this tutorial. If you've gone through Lesson 1 and Lesson 2, you already know the essentials for installing and writing useful scripts with MySQL and PHP. We're going to look at some useful PHP functions that should make your life a lot easier. First, let's look at include files. We all know the basics of includes, right? Contents of an external file are referenced and imported into the main file. It's pretty easy: You call a file and it's included. When we do this in PHP there are two functions we need to talk about: include() and require(). The difference between these two functions is subtle but important, so let's take a closer look. The require() function works in a XSSI-like way; files are included as part of the original document as soon as that file is parsed, regardless of its location in the script. So if you decide to place a require() function inside a conditional loop, the external file will be included even if that part of the conditional loop is false. The include() function imports the referenced file each time it is encountered. If it's not encountered, PHP won't bother with it. This means that you can use include in loops and conditional statements, and they'll work exactly as planned. Finally, if you use require() and the file you're including does not exist, your script will halt and produce an error. If you use include(), your script will generate a warning, but carry on. You can test this yourself by trying the following script. Run the script, then replace include() with require() and compare the results. <html> <body> <?php include("emptyfile.inc"); echo "Hello World"; ?> </body> </html> I like to use the suffix .inc with my include files so I can separate them from normal PHP scripts. If you do this, make sure that you set your Web server configuration file to parse .inc files as PHP files. Otherwise, hackers might be able to http://hotwired.lycos.com/webmonkey/templates/print_template.htmlt?meta=/webmo... 11/11/2003
  • 2. Webmonkey: programming: PHP/MySQL Tutorial Pagina 2 di 10 guess the name of your include files and display them through the browser as text files. This could be bad if you've got sensitive information - such as database passwords - contained in the includes. So what are you going to do with include files? Simple! Place information common to all pages inside them. Things like HTML headers, footers, database connection code, and user-defined functions are all good candidates. Paste this text into a file called header.inc. <?php $db = mysql_connect("localhost", "root"); mysql_select_db("mydb",$db); ?> <html> <head> <title> <?php echo $title ?> </title> </head> <body> <center><h2><?php echo $title ?></h2></center> Then create another file called footer.txt that contains some appropriate closing text and tags. Now let's create a third file containing the actual PHP script. Try the following code, making sure that your MySQL server is running. <?php $title = "Hello World"; include("header.inc"); $result = mysql_query("SELECT * FROM employees",$db); echo "<table border=1>n"; echo "<tr><td>Name</td><td>Position</tr>n"; while ($myrow = mysql_fetch_row($result)) { printf("<tr><td>%s %s</td><td>%s</tr>n", $myrow[1], $myrow[2], $myrow[3]); } echo "</table>n"; include("footer.inc"); ?> See what happens? The include files are tossed into the main file and then the whole thing is executed by PHP. Notice how the variable $title was defined before header.inc is referenced. http://hotwired.lycos.com/webmonkey/templates/print_template.htmlt?meta=/webmo... 11/11/2003
  • 3. Webmonkey: programming: PHP/MySQL Tutorial Pagina 3 di 10 Its value is made available to the code in header.inc; hence, the title of the page is changed. You can now use header.inc across all your PHP pages, and all you'll have to do is change the value of $title from page to page. Using a combination of includes, HTML, conditional statements, and loops, you can create complex variations from page to page with an absolute minimum of code. Includes become especially useful when used with functions, as we'll see down the road. On to the exciting world of data validation. Simple Validation Imagine for a moment that we've got our database nicely laid out and we're now requesting information from users that will be inserted into the database. Further, let's imagine that you have a field in your database waiting for some numeric input, such as a price. Finally, imagine your application falling over in a screaming heap because some smart aleck put text in that field. MySQL doesn't want to see text in that portion of your SQL statement - and it complains bitterly. What to do? Time to validate. Validation simply means that we'll examine a piece of data, usually from an HTML form, and check to make sure that it fits a certain model. This can range from ensuring that a element is not blank to validating that an element meets certain criteria (for example, that a numeric value is stipulated or that an email address contains an @ for an email address). Validation can be done on the server side or on the client side. PHP is used for server-side validation, while JavaScript or another client-based scripting language can provide client-side validation. This article is about PHP, so we're going to concentrate on the server end of things. But if you're looking for some ready-made, client-side validation scripts, check out the Webmonkey code library. Let's ignore our database for the moment and concentrate on PHP validation. If you wish, you can add additional fields to our employee database quite simply by using the MySQL ALTER statement - that is, if you want to commit to the values that we'll validate. There are several useful PHP functions we can use to validate our data, and they range from simple to highly complex. A simple function we could use might be strlen (), which tells us the length of the variable. A more complex function would be ereg(), which uses full regular expression handling for complex queries. I won't delve into the complexities of regex here, as entire books have been written on the subject, but I will provide some examples on the next page. Let's start with a simple example. We'll check to see whether a variable does or does not exist. <html> <body> <?php if ($submit) { http://hotwired.lycos.com/webmonkey/templates/print_template.htmlt?meta=/webmo... 11/11/2003
  • 4. Webmonkey: programming: PHP/MySQL Tutorial Pagina 4 di 10 if (!$first || !$last) { $error = "Sorry! You didn't fill in all the fields!"; } else { // process form echo "Thank You!"; } } if (!$submit || $error) { echo $error; ?> <P> <form method="post" action="<?php echo $PHP_SELF ?>"> FIELD 1: <input type="text" name="first" value="<?php echo $first ?>"> <br> FIELD 2: <input type="text" name="last" value="<?php echo $last ?>"> <br> <input type="Submit" name="submit" value="Enter Information"> </form> <?php } // end if ?> </body> </html> The keys to this script are the nested conditional statements. The first checks to see whether the Submit button has been pressed. If it has, it goes on to check that both the variables $first and $last exist. The || symbol means "or" and the ! symbol means "not." We could also rewrite the statement to say, "If $first does not exist or $last does not exist, then set $error to the following." Next, let's extend things a little by checking to see whether a string is a certain length. This would be ideal for passwords, since you don't want some lazy user entering a password of only one or two letters. You'd rather it be, say, six or more characters. The function for this is, as you already know, strlen(). It simply returns a number equal to the number of characters in the variable being tested. Here, I modified the script above to check the length of $first and $last. <html> <body> <?php if ($submit) { if (strlen($first) < 6 || strlen($last) < 6) { http://hotwired.lycos.com/webmonkey/templates/print_template.htmlt?meta=/webmo... 11/11/2003
  • 5. Webmonkey: programming: PHP/MySQL Tutorial Pagina 5 di 10 $error = "Sorry! You didn't fill in all the fields!"; } else { // process form echo "Thank You!"; } } if (!$submit || $error) { echo $error; ?> <P> <form method="post" action="<?php echo $PHP_SELF ?>"> FIELD 1: <input type="text" name="first" value="<?php echo $first ?>"> <br> FIELD 2: <input type="text" name="last" value="<?php echo $last ?>"> <br> <input type="Submit" name="submit" value="Enter Information"> </form> <?php } // end if ?> </body> </html> Run this script and try entering six or fewer letters to see what happens. It's simple yet quite effective. Not-So-Simple Validation Let's talk a bit about using regular expressions with the ereg() and eregi() functions. As I said earlier, these can be either quite complex or very simple, depending on what you need. Using regular expressions, you can examine a string and intelligently search for patterns and variations to see whether they match the criteria you set. The most common of these involves checking whether an email address is valid (although, of course, there's no fail-safe way of doing this). Rather than delve into the mysteries of regular expressions, I'll provide some examples. You can use the same form we created on the previous page - just paste in the lines below to see how they work. First, let's make sure that text only has been entered into a form element. This regular expression tests true if the user has entered one or more lowercase characters, from a to z. No numbers are allowed: http://hotwired.lycos.com/webmonkey/templates/print_template.htmlt?meta=/webmo... 11/11/2003
  • 6. Webmonkey: programming: PHP/MySQL Tutorial Pagina 6 di 10 if (!ereg("[a-Z]", $first) || !ereg("[a-Z]", $last)) { Now, let's extend this expression to check whether the string is four to six characters in length. Using [[:alpha:]] is an easy way to check for valid alphabetic characters. The numbers in the braces check for the number of occurrences. And note that the ^ and $ indicate the beginning and end of the string. if (!ereg("^[[:alpha:]]{4,6}$", $first) || !ereg("^[[:alpha:]]{4,6}$", $last)) { Finally, let's build a regular expression that will check an email address' validity. There's been plenty of discussion about the effectiveness of checking for email addresses in this way. Nothing's completely foolproof, but what I have below works pretty well. I took this gem from the PHP mailing list. It's a great resource - use it. And yes, this is as scary as it looks. if (!ereg('^[-!#$%&'*+./0-9=?A-Z^_`a-z{|}~]+'. '@'. '[-!#$%&'*+/0-9=?A-Z^_`a-z{|}~]+.'. '[-!#$%&'*+./0-9=?A-Z^_`a-z{|}~]+$', $last)) { Don't spend too much time looking at this. Just move on to the next page. Functions Enjoy that last regex expression? Fun, wasn't it? Wouldn't it be even more fun to enter that chunk on a dozen different pages that need to process email addresses?! Think about the joy of finding a typo in that mess - and doing it a dozen times no less. But of course, there's a better way. Remember when we talked about include files earlier in this lesson? They'll allow us to create a piece of code like the email checker and include it multiple times across several pages. This way, when we want to change the code, we need edit only one file, not many. But if we want to get this done, we'll have to use functions. We've already used functions plenty of times. Every time we query the database or check the length of a string we're using functions. These functions are built into PHP. If you're a keen coder, you can extend PHP with your own customized functions. But that's a bit advanced for this tutorial. Instead we'll create functions that will reside within our PHP script. A function is simply a block of code that we pass one or more values to. The function then processes the information and returns a value. The function can be as simple or complex as we like, but as long as we can pass a value in and get one out, we don't really care how complex it is. That's the beauty of functions. Functions in PHP behave similarly to functions in C. When we define the functions, we must specify what values the function can expect to receive. It's tricky to get a handle on at first, but it prevents weird things from happening down the road. This is done because the variables inside a function are known as private variables. That is, they exist only inside the function. You may, for instance, have a variable in your script called $myname. If you created a function and expected to use the same $myname variable (with the same value), it wouldn't work. Alternatively, you could have the http://hotwired.lycos.com/webmonkey/templates/print_template.htmlt?meta=/webmo... 11/11/2003
  • 7. Webmonkey: programming: PHP/MySQL Tutorial Pagina 7 di 10 variable $myname in your script and also create another variable called $myname in your function, and the two would co-exist quite happily with separate values. I do not recommend doing this, however! When you come back and edit it six months later, you'll be breaking things left and right. There are exceptions to this rule as with all things, but that's outside the scope of this article. So let's create a function. We'll start simply. We need to give the function a name and tell it what variables to expect. We also need to define the function before we call it. <html> <body> <?php function addnum($first, $second) { $newnum = $first + $second; return $newnum; } echo addnum(4,5); ?> </body> </html> That's it! First, we created our function. Notice how we defined two new variables, called $first and $second. When we call the function, each variable is assigned a value based on the order in which it appears in the list - 4 goes to $first, 5 to $second. Then we simply added the two numbers together and returned the result. "Return" here simply means to send the result back. At the end of the script we print the number 9. Let's create something that's more useful to our database application. How about something that gracefully handles errors? Try this: <html> <body> <?php function do_error($error) { echo "Hmm, looks like there was a problem here...<br>"; echo "The reported error was $error.n<br>"; echo "Best you get hold of the site admin and let her know."; die; } if (!$db = @mysql_connect("localhost","user", "password")) { $db_error = "Could not connect to MySQL Server"; do_error($db_error); http://hotwired.lycos.com/webmonkey/templates/print_template.htmlt?meta=/webmo... 11/11/2003
  • 8. Webmonkey: programming: PHP/MySQL Tutorial Pagina 8 di 10 } ?> </body> </html> Before running this, try shutting down MySQL or using a bogus username or password. You'll get a nice, useful error message. Observant readers will notice the @ symbol in front of mysql_connect(). This suppresses error messages so that you get the information only from the function. You'll also see we were able to pass a variable into the function, which was defined elsewhere. Remember that I said functions use their own private variables? That was a little white lie. In fact, you can make variables outside of a function accessible to the function. You might create a function to query a database and display a set of results over several pages. You don't want to have to pass the database connection identifier into the function every time. So in this situation, you can make connection code available as a global variable. For example: <html> <body> <?php function db_query($sql) { global $db; $result = mysql_query($sql,$db); return $result; } $sql = "SELECT * FROM mytable"; $result = db_query($sql); ?> </body> </html> This is a basic function, but the point is that you don't need to send $db through when you call the function - you can make it available using the word global. You can define other variables as global in this statement, just separate the variable names by a comma. Finally, you can look like a real pro by using optional function variables. Here, the key is to define the variable to some default in the function, then when you call the function without specifying a value for the variable, the default will be adopted. But if you do specify a value, it will take precedence. Confused? For example, when you connect to a database, you nearly always connect to the same server and you'll likely use the same username and password. But sometimes you'll need to connect to a different database. Let's take a look. http://hotwired.lycos.com/webmonkey/templates/print_template.htmlt?meta=/webmo... 11/11/2003
  • 9. Webmonkey: programming: PHP/MySQL Tutorial Pagina 9 di 10 <html> <body> <?php function db_connect($host = "localhost", $user="username", $pass="graeme") { $db = mysql_connect($host, $username, $password); return $db; } $old_db = db_connect(); $new_host = "site.com"; $new_db = db_connect($new_host); ?> </body> </html> Isn't that cool? The variables used inside the function were defined when the function was defined. The first time the function is called, the defaults are used. The second time, we connect to a new host, but with the same username and password. Great stuff! Think about where you could use other functions in your code. You could use them for data checking, performing routine tasks, and so on. I use them a lot when processing text for display on a Web page. I can check, parse, and modify the text to add new lines and escape HTML characters in one fell swoop. Now all that's left to do is to impart some words of wisdom. Closing Advice When it comes to databasing, there's a lot to learn. If you haven't done it already, find a good book about database design and learn to put together a solid database - on any platform. It's an invaluable skill and it will save you plenty of time and headache in the long run. Also, learn about MySQL. It's a complex but interesting database with a wealth of useful documentation. Learn about table structure, data types, and SQL. You can actually achieve some pretty impressive stuff if you know enough SQL. Finally, there's PHP. The PHP Web site has nearly everything you need, from a comprehensive manual to mailing-list archives to code repositories. An excellent way to learn about PHP is to study the examples used in the manual and to check out the code archives. Many of the posted scripts consist of functions or classes that you can use for free in your own scripts without having to reinvent the wheel. Additionally, the mailing list is an excellent spot to check out if you get stuck. The developers themselves read the list and there are plenty of knowledgeable people there who can help you along the way. Good luck and good coding! http://hotwired.lycos.com/webmonkey/templates/print_template.htmlt?meta=/webmo... 11/11/2003
  • 10. Webmonkey: programming: PHP/MySQL Tutorial Pagina 10 di 10 Graeme Merrall works in New Zealand for KC Multimedia, an Internet/intranet design company. While sometimes being forced to use ASP, he enjoys spending his time coding in PHP, keeping the grass trimmed, and scaring his work mates with song lyrics repeated out of context. Feedback | Help | About Us | Jobs | Advertise | Privacy Statement | Terms of Service Copyright © 1994-2003 Wired Digital Inc., a Lycos Network site. All rights reserved. http://hotwired.lycos.com/webmonkey/templates/print_template.htmlt?meta=/webmo... 11/11/2003