Develop PHP Website for Learning Web Design Free Online
  Home   |   Forums   |   DevCMS
  Join   |   Log In
 
   

MySQL Tutorials - Learn MySQL

Tutor at Develop PHP
Show Alternate Field if Target Field is Empty
By: Adam      Created: Jul 15, 2009      Views: 1870 Tweet This Page  Post page to Facebook  Post page to Facebook

There may be times when you have empty values in some fields. If that is the case you can run conditional if and else statements on the returned data to see if there are empty values, matches, or whatever the logic needs to be. In this example we are going to display alternate data from another field if the target field has an empty value.

In the example below we have a member table that holds member information. If the website field is empty for that member, I am going to display their name field's data instead. Both fields used must be defined in the SQL command to return in the while loop.

Show alternate field if a field's value is empty:
Learn HTML
<?php 
// connect to your MySQL database here
require_once "connect_to_mysql.php";
// Build sql command
$sqlCommand "SELECT id, username, website FROM members";
// Execute the query here now 
$query mysql_query($sqlCommand) or die (mysql_error()); 
// Output the data using a while loop
$siteDisplay "";
while (
$row mysql_fetch_array($query)) {
    
// Gather all $row values into local variables
    
$uid $row["id"]; 
    
$username $row["username"]; 
    
$website $row["website"]; 
    
// Run conditional to see if the desired field is empty
    // If it is we display alternate content from another field in their row
    
if (!$website) {
        
$siteDisplay "$username";
    } else {
        
$siteDisplay "$website";
    }
    
    
// echo the output to browser
    
echo "User ID: $uid &bull; $siteDisplay<hr />";
}
// Free the results 
mysql_free_result($query);  
// close mysql connection 
mysql_close(); 
?>

Develop PHP browser display window
User ID: 1 • www.flashbuilding.com
User ID: 2 • www.joecool.com
User ID: 3 • Sally
User ID: 4 • www.williamawesome.com
User ID: 6 • www.webintersect.com
User ID: 5 • Tara
User ID: 7 • www.weheardyoufart.com
User ID: 8 • Adam




                                   That concludes this section, to continue learning MySQL head back to the index


Comment on Show Alternate Field if Target Field is Empty




Search Tags:
Show   ·  Alternate   ·  Field   ·  if   ·  Target   ·  Field   ·  is   ·  Empty   ·  
 
 
Arbitrary Links and Archives
Home
Active Forums
Members
SIte News
Link To Us
Gear
2009 Forum Archive
Programming Courses
Learn HTML
Learn CSS
Learn PHP
Learn MySQL
Learn Javascript
Learn jQuery
Learn ActionScript 3.0
Learn Java
Learn XML
DevelopPHP Requires Flash Player
Get Adobe Flash player
___________________________________________

Terms of Use  •  Privacy  •  Admin Notes

©2010 developphp.com   |   Powered By FlashBuildingHolder