Archive for the 'PHP' Category

Learn PHP: Class Three

If you're new here, you may want to subscribe to my RSS feed. This would mean that you'll never miss a post! You can also subscribe via email if you look in the sidebar!
Thanks for visiting!
Sean

Table of contents for Learn PHP

  1. Learn PHP: Prep
  2. Learn PHP: Class One
  3. Learn PHP: Class Two
  4. Learn PHP: Class Three

Today we are going to learn all about include and require! Include and require are handy to use not only in your php applications, but in general website design for sidebar’s and what not! So.. yeah.. :P Moving on!

Include and Require include a file within another PHP script. There are four ways of doing this:

  • include();
  • include_once();
  • require();
  • require_once();

Now using them is seriously simple. Lets say you have sidebar.php with your links? All you have do do is the following:

<?php include(”sidebar.php”); ?>

One thing to remember is how to control directories in PHP. For instance, if my file “sidebar.php” is in a folder called includes you put in:

<?php include(”includes/sidebar.php”); ?>

Or to take another route of it, if my file “sidebar.php” is in the / directory and the file I want the sidebar to show on is in a folder of that: /data I would put in:

<?php include(”../sidebar.php”); ?>

Now why are there four different ways to include them I hear you ask! Well they are pretty simple.

Include and Require are practically the same, apart from the way they give out errors. Include will continue parsing your script and just shove out an error. Require however will stop the whole script to give you an error. Really it’s all down to what you want.

Include_once and require_once you probably guess only allow you to include the file once. This is not only more secure but stops from silly errors where the file was just included and variables were overwritten halfway through the script. Again they give out the same errors as include and require.

So lets go over one of each!

<?php include(”sidebar.php”); ?>

<?php include_once(”sidebar.php”);?>

<?php require(”sidebar.php”);?>

<?php require_once(”sidebar.php”);?>

We really are spoilt for choice aren’t we! ;)


If you liked this post, perhaps you'd like to buy me a coffee?

Learn PHP: Class Two

Table of contents for Learn PHP

  1. Learn PHP: Prep
  2. Learn PHP: Class One
  3. Learn PHP: Class Two
  4. Learn PHP: Class Three

Moving on to Class II after a long break! We will today cover PHP’s If Else Statements.

Here is one in action:

<?php
if ($condition) {
echo “condition is true”;
}
?>

Simple enough? To start with as you can see you first write the statement name, in this case “if”. Then you enclose your condition in brackets, [A condition is essentially a question you ask PHP.] then you add an opening “curly bracket”. The opening curly bracket basically defines the start of the code to execute of the condition of the statement evaluates to true. In this case we are wanting PHP to output the text “condition is true” if the condition is true. Then finally we have a closing curly bracket.
In the above example the entire condition has simply been set to the variable $condition. Therefore what we are asking PHP is does the variable $condition exist, and if it does, does it have a value that is not NULL. [Null = Nothing, zero, zilch] In this case we didn’t actually define the variable $condition therefore the statement will evaluate to false and the code within the statement wont be executed. Therefore the above will output nothing at all. However the following code:

<?php
$condition = “Here!”
if ($condition) {
echo “condition is true”;
}
?>

Would output “Condition is True”.

Now if statements are pretty useless on their own! What you really want is if / else statements, which we will look at here!

<?php
$condition = 10;
if ($condition == 5) {
echo “condition is 5″;
}
?>

Basically here the variable condition is 10. PHP Checks if it is 5. As we all know 10 is not 5, so PHP does nothing. However in this statement:

<?php
$condition = 10;
if ($condition == 5) {
echo “condition is 5″;
} else if ($condition < 5) {
echo “condition is less than 5″;
} else {
echo “condition is ” . $condition;
}
?>

We have an if statement, an if else statement and an else statement.
Basically the code explains it, but the condition is 10. If the condition is 5, PHP will output that it is 5. Otherwise if the condition is less than 5. PHP will output that it is less than five. Lastly, if nothing matches in the if or else if statements PHP will output its else. Saying Condition is 10.

A last sample before we head off.

<?php
$condition = “yes”;
if ($condition == “no”){
echo “condition is false”;
} else if ($condition == “yes”){
echo “condition is true”;
} else {
echo “Something happened to the variable”;
}
?>

Here you can see that the condition is actually a word. PHP checks it just like it would a number and outputs all the same. Here PHP would output “Condition is True”.

And that’s it for today! Next week we have “arrays” so until then practise! :)


If you liked this post, perhaps you'd like to buy me a coffee?

Learn PHP: Class One

Table of contents for Learn PHP

  1. Learn PHP: Prep
  2. Learn PHP: Class One
  3. Learn PHP: Class Two
  4. Learn PHP: Class Three


So now that we have done the Prep Class its time to move on to the actual learning!

PHP Class I.

Echo’ing:

<?php echo “text here”; ?>

OR

<?php echo ‘text here’; ?>

Simple as that, thats how you get PHP to output some text. Whichever you use is really up to you, there is pros and cons to what you can do with each, you can read about them here. I prefer the double quoted version, just because I’m used to it.

Comments:
Comments are really important within any programming language, really to tidy up your code and so you remember what each bit does later on. PHP supports two different ways of commenting, C++ Style and Shell style. I will just stick with C++ Style for today

Example’s of echo’ng via C++ Style are as follows:

<?php
echo “Hi”; // Output: Hi
echo “Hi”; /* Hi */
?>

// Comments out the rest of the line. While /* */ lets you comment as far as you want, just remember to close the comment! If you don’t get me I’ll do a quick example:
This stop PHP echo’ing “Hi”

<?php
/*
echo “Hi”;
*/
?>

This however will not.

<?php
//
echo “Hi”;
//
?>

But this would

<?php
//echo “Hi”;
?>

/* style are obviously much easier for commenting out blocks of code. But for just adding a quick comment // style is alot better!

Variables:

<?php
$variablename = “Variable One”;
$variablename = ‘Variable One’;
$variablename = 1;
?>

Variables are vital within your programming language, you will use them over and over again! Again, you can use single or double quotes, both with their pros and cons, you can also use numbers, or other variables. I’ll give you a quick example of adding within variables.

<?php
$add = 2 + 1;
?>

That variable would add 2 + 1. But how to get what the Variable says? Well you just use echo again!

<?php
$add = 2 + 1;
echo $add;
?>

The output of that would be:

3

Nothing more, nothing less.
You can also add variables within variables. As complicated as that sounds its pretty easy. I’ll give you a quick example.

<?php
$one = 1;
$two = 2;
$add = $one + $two;
echo $add;
?>

So lets go over what we just learnt with a quick script;

<?php
$name = “Sean”; // My Name
$age = 16 +1; // Seventeen!
$nextage = $age +1; //Age I will be next year.
echo ‘Hi my name is ‘;
echo $name;
echo ‘ and I am ‘;
echo $age;
echo ‘ but I will be ‘
echo $nextage;
echo ‘ next year!’
?>

Of course that is probably the longest, but easiest way you could do it! The faster way to do it would be:

<?php
$name = “Sean”; // My Name
$age = 16 +1; // Seventeen!
$nextage = $age +1; //Age I will be next year.
echo “Hi my name is $name and I am $age but I will be $nextage next year!”;
?>

That’s defiantly the handiest way to do it! Don’t worry I’ll go abit more into that in the next lesson! Until then, practice!


If you liked this post, perhaps you'd like to buy me a coffee?

Learn PHP: Prep

Table of contents for Learn PHP

  1. Learn PHP: Prep
  2. Learn PHP: Class One
  3. Learn PHP: Class Two
  4. Learn PHP: Class Three

PHP

Nearly two or three times every week I get someone asking me to teach them how to program, many of these are from an online game I help out with called Injustice. Its amazing really that people that there is some hidden secret to coding and that I can just send you a link or say one or two lines and they will be able to code! I’m telling you people, its not magic!!
So instead of repeating myself over and over I’m shoving this article in here! Mainly because of this, secondly because I believe people can learn PHP a little easier than some of the websites make it. So on with the show!

Ok, so to actually learn PHP the best way to do it will be to install Xampp.
You can download Xampp here.
Xampp will install Apache [Webserver] MySQL [Database] and PHP among other things, but that is all we will be using! Once you download the file, run it, its a graphical installer for windows. For linux users, I’m sure you can work out how to install it! ;) Once installed start the Apache and MySQL services, the control panel will be in front of you, all you have to do is tick the boxes! Yep thats it, your done installing. Now, to put files into your “webserver” you will go into C:/Xamp/ht_docs/ if you installed it in the default directory. So lets create a folder called project. And put a file called index.php in there. In the index.php file just put the word “Test”. Then all you have to do is go to, http://localhost/project/index.php and if you did everything right you should be looking at a webpage that just says “Test”. There you have it! You are ready to learn PHP!


If you liked this post, perhaps you'd like to buy me a coffee?




404 Not Found

Not Found

The requested URL /ads/urchin_a.dat was not found on this server.
google-webtools.net