Site Meter Web Dev Notes » Blog Archive » How to use Variables in PHP

How to use Variables in PHP

by

Variables are very important once you start programming in PHP. Variables are used to represent a value and can store numbers, strings or arrays. The main reason variables are so useful is because they can then be used over and over again as many times as necessary.

Here is a simple example of using a variable:

<?php
   $theVariable = "This is a String";
   print $theVariable;
?>

The above code will set the value of $theVariable and then use the print function to print “This is a String” to the screen.

<?php
   $anotherVariable = 11;
   print $anotherVariable;
?>

This second example is almost identical to the first except that the variable is assigned an integer value rather than a string. The important thing to notice here is that when assigning an integer value, you do not use the quotation marks, whereas for a string, you place the text between quotes.

If you are familiar with other programming languages, you may think I was a bit sloppy and avoided declaring my variables to save some time and space. This is not the case! PHP is actually a “Loosely Typed Language”. What this means is that variables can be set without being declared; the variable is automatically declared when it is used.

On a final note, as with most programming languages, don’t forget that variables in PHP are case sensitve. $var1 & $Var1 are considered to be two completely different variables. Try and follow some sort of naming convention to avoid errors resulting from this sort of thing.


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