Get latest news and Web Designing tutoria

Saturday, 30 May 2015

Geting Values from Arrays

Here's an example for you to try:
<?php
$seasons = array("Autumn", "Winter", "Spring", "Summer");
print $seasons[0];
?>
The array is the same one we set up before To get at what is inside of an array, just type the key number you want to access. In the above code, we're printing out what is held in the 0 position (Key) in the array. You just type the key number between the square brackets of your array name:
print $Array_Name[0];

You can also assign this value to another variable:
$key_data = $Array_Name[0];
print $key_data;
It's a lot easier using a loop, though. Suppose you wanted to print out all the values in your array. You could do it like this:
$seasons = array("Autumn", "Winter", "Spring", "Summer");
print $seasons[0];
print $seasons[1];
print $seasons[2];
print $seasons[3];
Or you could do it like this:
for ($key_Number = 0; $key_Number < 4; $key_Number++) {
print $seasons[$key_Number];
}
If you have many array values to access, then using a loop like the one above will save you a lot of work!
You don't have to use numbers for the keys - you can use text. We'll see how to do that in the next part.

Related Posts:

  • Getting values out of PHP functions When you're creating your own functions, you may notice that they can be broken down in to two categories: functions that you can leave, and just let them do their jobs; and functions where you need to get an answer ba… Read More
  • Check for blank Textboxes with PHP f you remember the script that we wanted to create earlier it was this: Get the text that a user entered in a textbox on a form Trim any blank spaces from the left and right of the text Check that what you have left i… Read More
  • Create a database with phpMyAdmin You can create all of your database tables and queries using PHP code. But before doing that, it's a good idea to get an understanding of just what it is you'll be creating. If you're new to the world of databases, the… Read More
  • phpMyAdmin Tables - Adding Records To insert a new record to the table you created in the previous page select the Insert link at the top of the page:   When you click on Insert, you'll be taken to a new area. This one: As you can see, our … Read More
  • phpMyAdmin Database Fields You have four Fields in your table from the previous lesson Although they are set out in rows in the images, the rows are actually the Columns you saw earlier – the Fields. Each Field needs a name. So go ahead and type… Read More

0 comments:

Post a Comment