PHP
  Home arrow PHP arrow Page 9 - PHP 101 (Part 2) - Shakespeare's Rose
Dev Shed Forums 
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Forums Sitemap 
IBM® developerWorks 
Sun Developer Network 
E-Commerce Hosting 
Linux Web Hosting 
Managed Hosting 
Small Business Hosting 
Moblin 
JMSL Numerical Library 
VPS Hosting 
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? 
PHP

PHP 101 (Part 2) - Shakespeare's Rose
By: Vikram Vaswani and Harish Kamath, (c) Melonfire
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 10
    2000-08-08

    Table of Contents:
  • PHP 101 (Part 2) - Shakespeare's Rose
  • Form...
  • ...And Function
  • Operating With Extreme Caution
  • Shakespeare In The Matrix
  • If Not This, Then What?
  • Fortune Smiles
  • Submitting To The King
  • Miscellaneous Notes

  • 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


    PHP 101 (Part 2) - Shakespeare's Rose - Miscellaneous Notes


    (Page 9 of 9 )



    The === operator
    ------------------------

    As we've mentioned above, PHP4 introduces the new === operator to test whether variables are of the same type. Here's an example:


    <? if (!$submit) { // if $submit doesn't exist, it implies that the form // has not yet been submitted // so display the first page ?> <html> <head> <style type="text/css"> td {font-family: Arial;} </style> </head> <body> <form method="GET" action="cookie.php4"> <table cellspacing="5" cellpadding="5" border="0> <tr> <td align="center"> Gimme something! </td> <td align="right"> <input type="text" name="yin"> </td> </tr> <tr> <td align="center"> Gimme something else! </td> <td align="right"> <input type="text" name="yang"> </td> </tr> <tr> <tr> <td colspan="2" align="center"> <input type="submit" name="submit" value="Test!"> </td> </tr> </table> </form> </body> </html> <? } else { // if $submit does exist, the form has been submitted // so process it if ($yin === $yang) { $result = "Both variables are identical and of the same type"; } else { $result = "The variables are either not identical or not of the same type"; } ?> <html> <head> <basefont face="Arial"> </head> <body> <b><? echo $result; ?></b> </body> </html> <? } ?>


    Alternative syntax
    ------------------

    PHP also supports an alternative syntax for the various control structures discussed so far. For example, you could do this:


    <? if ($elvis == 0) { echo "Elvis has left the building!"; } else { echo "Elvis is still backstage!"; } ?> or you could do this <? if ($elvis == 0): echo "Elvis has left the building!"; else: echo "Elvis is still backstage!"; endif; ?>


    The second alternative is equivalent to the first, and simply involves replacing the first curly brace of every pair with a colon [:], removing the second curly brace, and ending the block with an "endif" statement.

    And that's it for this week. Next time, we'll be bringing you loops, arrays and more forms - so make sure you don't miss it!
    DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware.

     

       

    PHP ARTICLES

    - Building a Content Management System with Co...
    - Filters and Login Systems for Web Applicatio...
    - Working with the Email Class in Code Igniter
    - Building Your Own System Tray Application Us...
    - Structuring Your Projects for Web Applicatio...
    - Inserting, Updating and Deleting Database Ro...
    - Building Your Own Desktop Notepad Applicatio...
    - Web Application Security Overview
    - Working with the Active Record Class in Code...
    - Generate PDF Documents with PHP on the Windo...
    - Sending Email with PHP Networking
    - Performing Strict Validation with the Code I...
    - The preg_replace_callback() function in PHP
    - PHP Networking
    - Validating Web Forms with the Code Igniter P...





    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 6 hosted by Hostway
    Stay green...Green IT