Site Meter Web Dev Notes » Blog Archive » If/Else Programming Logic

If/Else Programming Logic

by

It’s time to start introducing some more complex programming logic today! Conditional statements are still fairly simple to understand but allow for much more complex capabilities than I have demonstrated thus far. For example, while creating variables is useful, we quickly find ourselves limited in the types of applications we can make without further logic. Conditional statements allow us to include some very basic artificial intelligence into our programs by allowing the software to make certain decisions on its own based on the values of variables.

Please keep in mind that while I am demonstrating this in the context of PHP, IF/ELSE statements are a fundamental component of most programming languages.

So how does the computer make a decision? Basically, you provide a statement and then the system will verify whether that statement is true of false. Depending on the result, a different path of code will be executed. Here is an example:

<?php
   if ($newMember)
   {
      $sendWelcomeEmail = True;
   }
   else
   {
      $sendWelcomeEmail = False;
      print "Already a member!";
   }
?>

Imagine you are signing up to become a member of a website. Some function not shown will likely check the email address you provide to determine if you are already a member of the website of not. This function would then set the value of the variable $newMember to either True of False. The code above then decides if a welcome email should be sent to the user or not depending on if they are already a member of the website or not.

Again note that the function to actually send the email is not shown, but we assume that this function would take the variable $sendWelcomeEmail as a parameter and use this to determine whether or not to send the email.


Leave a Reply


About Web Dev Notes

Your one stop destination for anything and everything related to web development

Web Dev Notes Author(s)

Blogging Flair

New Media, Web 2.0 Channel Posts

  • 10 Ways to Make Sure Your SEO Goes Out of Its Way for You
    If they want to have success, companies should do everything they can to ensure that their SEO firm doesn't provide lousy service. Here are 10 tips to keep in mind: 1. Be realistic. Don't waste your [...]
  • Podcasting Transcription
    A Guest Post from Tishia Lee of Tishia Saves Time: When I first started offering transcription services as part of my Virtual Assistant business, transcribing podcasts was not something I [...]
  • Don't Dabble - Make A Commitment
    If you want to get the best bang for your buck, plan on podcasting for the long haul. Podcasters who “test” things out with one or two podcasts and then give up may think that they've given [...]
  • A Question of Podcasting Frequency
    This follows up on yesterday's post about not dabbling in podcasting but rather to make a commitment. Podcasting on a schedule is important when building a community and an audience. Don’t have [...]
  • Do You Twitter About Your Podcast?
    Whenever I release a new episode of Work at Home Moms Talk Radio is pop the link up on my Twitter and invite my followers to come check it out. This has brought me several first time listeners which [...]
  • Looking for Podcast Outsourcing?
    I mentioned having my podcast audio's transcribed in my last post. In case you wonder - no, I do not transcribe them myself. (Shudder the thought - I did enough transcription to last a lifetime in [...]
  • Business Podcasting Benefit: Be An Industry Thought Leader
    I often ask people 'Why haven't you started your podcast yet?' and a common reply is 'I don't feel like I'm enough of an expert to cover the topic I'm interested in.' Enough of an expert? [...]
  • Business Podcasting Benefit: More Content
    Building a business on the web requires that you generate a lot of content. Content on your website draws traffic both through search engines (people searching for your content) and through links [...]
  • Business Podcasting Benefit: Deeper Relationships
    A website visitor is just a website visitor. You can't really say that you have a relationship with someone who has only visited your website can you? But when the web visitor subscribes to [...]
  • Business Podcasting Benefit: Increased Market Exposure
    When you consider how many millions of people are walking around with iPods and other Mp3 players you have to wonder, wouldn't it be awesome if they came looking for you? Well they do. Ipod [...]

Hot Off The Press


Warning: Unknown: write failed: No space left on device (28) in Unknown on line 0

Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct () in Unknown on line 0