Database Articles
  Home arrow Database Articles arrow Page 12 - Create dynamic sites with PHP & MySQL
Codewalker Forums 
  Tutorials  
Database Articles  
Miscellaneous  
Navigation Usability  
PEAR Articles  
Programming Basics  
Server Administration  
XML Tutorials  
  Reviews  
Database Book Reviews  
Linux Book Reviews  
Miscellaneous Reviews  
PHP Book Reviews  
PHP Software Reviews  
Server Admin Reviews  
SQL Tool Reviews  
  Code Gallery  
Content Management Code  
Contest Code  
Counters Code  
Database Code  
Date Time Code  
Discussion Board Code  
Email Code  
File Manipulation Code  
GUI Code  
Link Farm Code  
Miscellaneous Code  
Search Code  
Site Navigation Code  
User Management Code  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
Download TestComplete 
Forums Sitemap 
Weekly Newsletter 
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
DATABASE ARTICLES

Create dynamic sites with PHP & MySQL
By: Codewalkers
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 27
    2002-05-19

    Table of Contents:
  • Create dynamic sites with PHP & MySQL
  • Introduction and installation
  • Installing Apache server routines
  • Installing MySQL
  • Installing PHP
  • Your first script
  • Your first database
  • Where's my view?
  • Creating an HTML form
  • Putting it together
  • Passing variables
  • Viewing individual rows
  • Deleting rows
  • Editing data
  • Searching our data
  • Tips for common tasks

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Create dynamic sites with PHP & MySQL - Viewing individual rows


    (Page 12 of 16 )

    So now we will create a script that will display the information of a particular row in our database defined by the variable $id. Save the following code as view.php. Try viewing it through your Web server as http://yourhost/view.php?id=2 (here we have passed the variable $id=2 through the query string). The page should show information corresponding to the id 2 in the MySQL database.

    <HTML>
    <?php 
    $db = mysql_connect("localhost", "root", ""); 
    mysql_select_db("learndb",$db); 
    $result = mysql_query("SELECT * FROM personnel WHERE id=$id",$db); 
    $myrow = mysql_fetch_array($result); 
    echo "First Name: ".$myrow["firstname"]; 
    echo "<br>Last Name: ".$myrow["lastname"]; 
    echo "<br>Nick Name: ".$myrow["nick"]; 
    echo "<br>Email address: ".$myrow["email"]; 
    echo "<br>Salary: ".$myrow["salary"]; 
    ?> 
    </HTML>

    Here the SQL command has changed and it tells the database to search for the row that has the value $id. But can't multiple rows contain the same values of id? Generally a column can contain any value, the same or different. But in our database two rows can never have the same value of id, as we have defined id as UNIQUE when we created our database.

    We immediately modify our previous viewdb.php to viewdb2.php so that it can call view.php with the proper query string.

    <HTML> 
    <?php 
    $db = mysql_connect("localhost", "root", ""); 
    mysql_select_db("learndb",$db); 
    $result = mysql_ query("SELECT * FROM personnel",$db); 
    echo "<TABLE BORDER=2>"; 
    echo"<TR><TD><B>Full Name</B><TD><B>Nick Name</B><TD><B>Options</B></TR>"; 
    while($myrow = mysql_fetch_array($result)) 

    echo "<TR><TD>".$myrow["firstname"]." ".$myrow["lastname"]."<TD>".$myrow["nick"]; 
    echo "<TD><a href=\"view.php?id=".$myrow[id]."\">View</a>"; 

    echo "</TABLE>"; 
    ?> 
    </HTML>

    Viewing this page will show a list of names and corresponding nicknames. Look at the third column with a hyperlink view. Take your mouse over the hyperlink and look what it points to. The link should be something like http://yourhost/view.php?id=3 and the links in each row will be different. Click on one of the links. It will bring up our previously coded view. php showing the detailed information of that person. How is this achieved?

    Let's take a look at our code viewdb2.php. Look at line 11, where all the real stuff takes place. The only unfamiliar thing here should be those odd dots (.) all around the line. The dot (.) is a concatenating operator in PHP, which means it concatenates the two strings on its two sides, which in turn means that if we write echo "Hello"."World", the output will actually be "HelloWorld". In our example we use the concatenate operator to generate a line like:

    <TR><TD>Camilla Anderson<TD>Rose<TD><a href="view.php?id=2">View</a>

    for the browser.

    More Database Articles Articles
    More By Codewalkers


       · Hi :-)Thank you for this great tutorial!Best regardsU.
       · Very easy to use and follow. There are a few errors with the examples but i found...
       · Well organized, super-clear tutorial.Thanks so much!
       · thanks u for this tutorial it's really user friendly and helpful!=)luvvies,cat
       · I am so glad that I found this tutorial. It has a very comfortable rate of progress...
       · This tutorial sets out to do great things. And when you fix all the code, it really...
       · Hey, you have a few spaces where there not needed, so anyone who gets the...
       · usando esse tutorial você aprende muitas coisas boas sobre mysql e php...
       · 'nuff said
       · its good, but could be made more better by putting more examples
       · I am an idiot among the newbies.Many other tutorials never mention the $_POST[]...
       · Thanks!
       · Congratulations for your hard work to help people like me.This was very important...
       · This helped me get started with mySql and PHP. Thanks a lot!
       · This one of the greatest and most comprehensive tutorials i have read in a long...
       · This one of the greatest and most comprehensive tutorials i have read in a long...
       · 
       · This tutorial helped me make my site for 30 % and 35% exists from databases (= thank...
       · This very useful for me as a new comer. The way tutorial is presented is very...
       · IM KNEELING DOWN IN AWE...MASTER!!! MASTER!!!
     

    DATABASE ARTICLES ARTICLES

    - More on Query Optimization for Oracle Databa...
    - Query Optimization in Oracle
    - Clusters and Other Data Structures for Oracle
    - Using Indexes with an Oracle Database
    - The Basics of Data Structures in Oracle
    - Oracle Data Structures
    - Best Practices for PL/SQL Variables
    - What`s Code Without Variables?
    - Clauses, Sorting, and SQL Queries
    - The From Clause and SQL Queries
    - Query Primer
    - Full Text Searches and Strings
    - Searching with Strings
    - Pattern Matching with Strings
    - Working with Cases of Strings





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 1 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek