25
Thu, Apr
1 New Articles

TechTip: MySQL and PHP Are a Perfect Match, Part II

Web Languages
Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

Putting MySQL under your PHP/AJAX hood really gives your apps horsepower.

 

If you've read my last two tips, you should by now have installed an Apache Server running PHP and a MySQL Database Server locally on your PC. Even if you haven't, you can benefit from this tip because if you have the installment on a "remote" Web server, the scripts provided here will still work. But you might have to do a little tweaking.

 

I also expect you to have installed a version of SQLyog because it will be used as database tool in this tip.

 

For your convenience, here are my previous two tips.

Importing Data Using SQLyog

As you might know, I am a big fan of Elvis Costello. Therefore, the data that we will use in this tip is a table called ec_albums, which contains all the albums I have on CD by Mr. Costello. To save you a lot of work, I have created a small SQL file that you can import using SQLyog.

 

So let's stop "Talking in the Dark" and move on to the fun stuff.

 

First, download the SQL dump. Save the file and unzip it somewhere on your computer.

 

Then, open SQLyog, find the mydb database you created in my previous tip, right-click on mydb, and select Restore from SQL Dump, as shown in Figure 1.

 

110609Jan1

Figure 1: Restore from SQL dump. (Click images to enlarge.)

 

On the Execute Query(s) From A File dialog, navigate to where you saved the downloaded SQL file and press Execute.

 

110609Jan2

Figure 2: Import the downloaded SQL file.

 

If you receive a few warnings, just press OK. When you see the picture in Figure 3, the import is done. Press Done.

 

110609Jan3

Figure 3: Your file has been imported.

 

When you return to the SQLyog workbench, press F5 to refresh and confirm that you now have a table called ec_albums. Click on the Table Data tab to view the contents of the table.

 

110609Jan4 

Figure 4: Now you can see your data.

 

Success! That data is now imported and ready to use.

"(What's So Funny 'Bout) PHP, Love and Understanding"  

Before we start writing the PHP scripts, let me give you an overview of what we will be doing during this tip. This tip is built around the PHP and AJAX tip Jeff Olen recently wrote. I have changed most of the code to suit my needs, but if you read Jeff's tip, you'll know pretty much what the idea is and how Jeff's code works.

 

So let's move on to the fun part and start defining the first PHP script, which will be a script to hold the database logon information. (At the end of this tip, you can download a zip file that contains all the PHP scripts for this tip.)

 

The first script, connect.php, looks like this:

 

connect.php

 

<?php

 

//======================================================================// Connect to server/database

//======================================================================$dbHost = "localhost";

$dbUser = "root";

$dbPass = "1234";

$dbDatabase = "mydb";

 

?>

 

The next script, called ec.php, is the script that contains the form where you can search for the album titles.

 

 

ec.php

 

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

<head>

<title>Search Costello Albums</title>

</head>

 

<script src="/select.js"></script>

 

<script>

<!--

 

// Send the request to the server

function sendRequest()

{

 

xmlhttp=GetXmlHttpObject();

if (xmlhttp==null)

{

  alert ("Browser does not support HTTP Request");

  return;

}

 

// Get input data

var data = parent.document.getElementById("search").value;

 

// Get length of string

//if ( data.length < 3 ) return;

 

// set up the url for the server request

var url="ec-load.php";

url=url+"?data="+data;

// random number to avoid caching

url=url+"&sid="+Math.random();

 

xmlhttp.onreadystatechange=stateChanged;

xmlhttp.open("GET",url,true);

xmlhttp.send(null);

}

 

 

//-->

</script>

 

 

<body>

 

<form>

 

<b>Search for Elvis Costello albums</b>

<p>

 

<table border="1" cellspacing="0" cellpadding="3">

<tr>

<td>

Enter title or part of it (*=view all)

</td>

 

<td>

<input size="30" maxlength="50">

<!--<input size="30" maxlength="50">-->

 

</td>

</tr>

 

<tr>

<td colspan="2">

<input value="Search">

</td>

</tr>

 

</table>

</form>

 

<!-- Display data result -->

<div></div>

 

</body>

</html>

 

I will not discuss every statement in the script, but please notice that I have moved the sendRequest JavaScript function out of the select.js document because I then can use it in more general terms.

 

Other than that, the ec.php script is pretty straightforward and should not be too hard to understand.

 

The next script, called ec-load.php, is the script used to read the HTML input form, connect to the MySQL database, read the data from the ec_albums form, and return the result back to the ec.php script through the AJAX "tunnel."

 

ec-load.php

 

<?php

 

//=============================================================================

// Read input

//=============================================================================

 

$data = $_REQUEST['data'];

 

if ($data == "") {

echo "<b>Please enter a search string</b>";

exit;

}

 

// Save for display on entries found

$saveData = $data;

 

//=============================================================================

// Connect to server/database

//=============================================================================

     include "connect.php";

 

//=============================================================================

// Select data from table according to search string

//=============================================================================

 

     $conn = mysql_connect("$dbHost", "$dbUser", "$dbPass") or die ("Error connecting to database.");

 

     if ( $data == '*' )

     {   

          $data = "";

          $limit = 200;

     } else {

          $limit = 10; 

     }

    

     // Check input

     $data = check_input($data); 

 

     mysql_select_db("$dbDatabase", $conn) or die ("Couldn't select the database.");

     $sql = "SELECT * FROM ec_albums WHERE title LIKE " . $data . " ORDER BY relyear, title LIMIT " . $limit;

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

    

     $num_rows = mysql_num_rows($result);

    

     echo "<table border=""1"" cellspacing=""0"" cellpadding=""3"">";

     echo "<tr>";

     echo "<td colspan=""3"" bgcolor=""#e8e8e8"">"; 

     echo "Entries found: $num_rows, when searching on: <b><i>$saveData</i></b><br>";

     echo "</td>";

     echo "</tr>";

    

     echo "<tr bgcolor=""#c0c0c0"">";

     echo "<td>";

     echo "Title<br>";

     echo "</td>";

     echo "<td align=""center"">";

     echo "Release year<br>";

     echo "</td>";

     echo "<td>";

     echo "Producer<br>";

     echo "</td>";          

    

     while($row = mysql_fetch_array($result))

     {

          $title        =    $row['title'];

          $producer     =    $row['producer'];

          $relyear      =    $row['relyear'];

 

          echo "<tr>";

          echo "<td>";

          echo "$title<br>";

          echo "</td>";

          echo "<td>";

          echo "$relyear<br>";

          echo "</td>";

          echo "<td>";

          echo "$producer<br>";

          echo "</td>";     

    

     }

    

     echo "</tr>";

     echo "</table>";

 

 

//=============================================================================

// Check input to avoid SQL injection

//=============================================================================

function check_input($value)

{

 

// Stripslashes

if (get_magic_quotes_gpc())

  {

  $value = stripslashes($value);

  }

 

  // Quote if not a number

if (!is_numeric($value))

  {

     $value = "'%" . mysql_real_escape_string($value) . "%'";

  }

 

 

return $value;

}

 

?>

 

One thing to pay attention to is the check_input function, which prevents SQL Injection. If you do not know what this is, have a look at http://en.wikibooks.org/wiki/PHP_Programming/SQL_Injection or do a Google search.

 

To get the connect.php script in action, I use the include command (think of the /copy in RPG and you are on your way).

 

The script is pretty straightforward.

 

  1. Connect to the database.
  2. Check the input.
  3. Build the SQL statement.
  4. Read the data and build an HTML table to hold the result.
  5. Return to caller.

 

Please note that if you use an asterisk (*) in the  ec_load.php script, all the entries in the table will be displayed in the browser.

 

The last building block is the select.js, which contains the JavaScript needed to create the AJAX tunnel between the ec.php and the ec_load.php scripts.

 

select.js

 

//=======================================================

 

// JavaScript code. Source member name: selectPlan.js

 

//=======================================================

 

var xmlhttp;

 

// Create an instance of the XMLHttpObject

// NOTE: In all browsers except IE, this is implemented using

//       the XMLHttpObject. In IE, it is implemented using an

//       ActiveXObject.

 

function GetXmlHttpObject()

 

{

 

if (window.XMLHttpRequest)

 

  {

  // code for IE7+, Firefox, Chrome, Opera, Safari

  return new XMLHttpRequest();

  }

 

if (window.ActiveXObject)

  {

  // code for IE6, IE5

  return new ActiveXObject("Microsoft.XMLHTTP");

  }

return null;

 

}

 

// render or re-render the HTML

 

function stateChanged()

 

{

      if (xmlhttp.readyState==4)

 

      {

              // For debug purpose

            //var text = xmlhttp.responseText;

              //alert(text);

             

            document.getElementById("responseHTML").innerHTML=xmlhttp.responseText;

      }

 

}

"Welcome To The Working Week"

Download the scripts. Place them somewhere in your document root and then point your browser to

http://localhost/ec.php. You will see the screen in Figure 5.

 

110609Jan5 

Figure 5: Now you can search.

 

Enter something in the search field (e.g., My Aim Is) and click the Search button. You will see the result as in Figure 6.

 

110609Jan6

Figure 6: You have search results!

"Beyond Belief"

Buried inside my code, there's a little secret in the ec.php script. Locate these lines:

 

<input size="30" maxlength="50">

<!--<input size="30" maxlength="50">-->

 

Remove the <!-- and the --> on the onKeyUp line and insert it on the line before, like this:

 

<!--<input size="30" maxlength="50">-->

<input size="30" maxlength="50">

 

Then, in the sendRequest Javascript function, locate these lines:

 

// Get length of string

//if ( data.length < 3 ) return;

 

Remove the two slashes (//) in front of the second line so it looks like this:

 

// Get length of string

if ( data.length < 3 ) return;

 

Now you have changed the application so that when you start typing in the search field, the script will start searching the database as soon as the search string reaches a length of greater than three characters. Pretty cool, I think! Go ahead and give it a try.

"I Hope You're Happy Now"

As you can see, it's pretty easy to build some very cool and useful applications using a little PHP, some JavaScript, and a MySQL database under the hood.

 

You now have a secure environment where you can play around and expand your skills to meet the needs requested by more and more demanding users.

 

So till next time, listen to some Elvis Costello music, learn to write more PHP code, and enjoy your programming life.

 

 

 

Jan Jorgensen

Jan Jorgensen is one of the owners of www.reeft.dk, which specializes in mobile and i5 solutions. He works with RPG, HTML, JavaScript, Perl, and PHP. You can reach him at This email address is being protected from spambots. You need JavaScript enabled to view it.

 

BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$0.00 Raised:
$

Book Reviews

Resource Center

  • SB Profound WC 5536 Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application. You can find Part 1 here. In Part 2 of our free Node.js Webinar Series, Brian May teaches you the different tooling options available for writing code, debugging, and using Git for version control. Brian will briefly discuss the different tools available, and demonstrate his preferred setup for Node development on IBM i or any platform. Attend this webinar to learn:

  • SB Profound WP 5539More than ever, there is a demand for IT to deliver innovation. Your IBM i has been an essential part of your business operations for years. However, your organization may struggle to maintain the current system and implement new projects. The thousands of customers we've worked with and surveyed state that expectations regarding the digital footprint and vision of the company are not aligned with the current IT environment.

  • SB HelpSystems ROBOT Generic IBM announced the E1080 servers using the latest Power10 processor in September 2021. The most powerful processor from IBM to date, Power10 is designed to handle the demands of doing business in today’s high-tech atmosphere, including running cloud applications, supporting big data, and managing AI workloads. But what does Power10 mean for your data center? In this recorded webinar, IBMers Dan Sundt and Dylan Boday join IBM Power Champion Tom Huntington for a discussion on why Power10 technology is the right strategic investment if you run IBM i, AIX, or Linux. In this action-packed hour, Tom will share trends from the IBM i and AIX user communities while Dan and Dylan dive into the tech specs for key hardware, including:

  • Magic MarkTRY the one package that solves all your document design and printing challenges on all your platforms. Produce bar code labels, electronic forms, ad hoc reports, and RFID tags – without programming! MarkMagic is the only document design and print solution that combines report writing, WYSIWYG label and forms design, and conditional printing in one integrated product. Make sure your data survives when catastrophe hits. Request your trial now!  Request Now.

  • SB HelpSystems ROBOT GenericForms of ransomware has been around for over 30 years, and with more and more organizations suffering attacks each year, it continues to endure. What has made ransomware such a durable threat and what is the best way to combat it? In order to prevent ransomware, organizations must first understand how it works.

  • SB HelpSystems ROBOT GenericIT security is a top priority for businesses around the world, but most IBM i pros don’t know where to begin—and most cybersecurity experts don’t know IBM i. In this session, Robin Tatam explores the business impact of lax IBM i security, the top vulnerabilities putting IBM i at risk, and the steps you can take to protect your organization. If you’re looking to avoid unexpected downtime or corrupted data, you don’t want to miss this session.

  • SB HelpSystems ROBOT GenericCan you trust all of your users all of the time? A typical end user receives 16 malicious emails each month, but only 17 percent of these phishing campaigns are reported to IT. Once an attack is underway, most organizations won’t discover the breach until six months later. A staggering amount of damage can occur in that time. Despite these risks, 93 percent of organizations are leaving their IBM i systems vulnerable to cybercrime. In this on-demand webinar, IBM i security experts Robin Tatam and Sandi Moore will reveal:

  • FORTRA Disaster protection is vital to every business. Yet, it often consists of patched together procedures that are prone to error. From automatic backups to data encryption to media management, Robot automates the routine (yet often complex) tasks of iSeries backup and recovery, saving you time and money and making the process safer and more reliable. Automate your backups with the Robot Backup and Recovery Solution. Key features include:

  • FORTRAManaging messages on your IBM i can be more than a full-time job if you have to do it manually. Messages need a response and resources must be monitored—often over multiple systems and across platforms. How can you be sure you won’t miss important system events? Automate your message center with the Robot Message Management Solution. Key features include:

  • FORTRAThe thought of printing, distributing, and storing iSeries reports manually may reduce you to tears. Paper and labor costs associated with report generation can spiral out of control. Mountains of paper threaten to swamp your files. Robot automates report bursting, distribution, bundling, and archiving, and offers secure, selective online report viewing. Manage your reports with the Robot Report Management Solution. Key features include:

  • FORTRAFor over 30 years, Robot has been a leader in systems management for IBM i. With batch job creation and scheduling at its core, the Robot Job Scheduling Solution reduces the opportunity for human error and helps you maintain service levels, automating even the biggest, most complex runbooks. Manage your job schedule with the Robot Job Scheduling Solution. Key features include:

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • LANSAWhen it comes to creating your business applications, there are hundreds of coding platforms and programming languages to choose from. These options range from very complex traditional programming languages to Low-Code platforms where sometimes no traditional coding experience is needed. Download our whitepaper, The Power of Writing Code in a Low-Code Solution, and:

  • LANSASupply Chain is becoming increasingly complex and unpredictable. From raw materials for manufacturing to food supply chains, the journey from source to production to delivery to consumers is marred with inefficiencies, manual processes, shortages, recalls, counterfeits, and scandals. In this webinar, we discuss how:

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • Profound Logic Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application.

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: