@cjvaans4484

Nice! Sometimes it gets boring, but I need to hang it there! 162 videos left! Fight on! 

@Madgod711

38/200 in one night. It is 3:47 AM I think I shall continue to 40, the sleep for a few hours :-)

Great tutorials...

@abdulbasitkhan3945

you really did a great job

@MominParveez

I miss that "tuna, bacon" stuff Bucky used to say all the time.

@khajvah1

vim is one of the best, it is awesome :)

@fathimubaraki4260

thanks 
very clear

@MrHentaiNeko

goodluck to us both. ^^

@CristianoConsule

Great video... Another way to use is

 var_dump($food);

@josefinej3921

The videos about arrays should've come before the string functions-videos. This explains everything, which I couldn't understand in the other videos. 
I think he accidentally might have switched these series.

@Colstonewall

@AJFreeway Notepad++ is the BEST as far as I'm concerned. Not to mention, you can even run the Python Interpreter from inside Notepad++, among many, many other features.

@1200steven

Best comment!

@Colstonewall

@benshelly WOW!! That's definitely the hard way, LOL. But I admire your spunk.

@slayer0273

$food = array('pasta','pizza','salad','pie',2);

echo $food[4];

this worked just fine for me.

@HasaanFazal

Not sure why he said "data type has to be same and you can't mix them"... 

I was able to get the out with the following code just fine:

<?php

$mixarray = array("Ping pong", 12, "This <strong>line</strong> is bold");

echo $mixarray[2];
?>

Am I missing something/understood wrong or php has updated to manage such arrays after this video is recorded?

@jasonbudd06

hip hip array! 161 to go

@gary12xxx

America and UK, their favorite foods ;)

@anushanaidu2969

hw to explicitly ask input from user using php... ?
for eg: i want to prepare a menu of dishes nd ask user to type a dish.... chcking wid elements in array
finding if its present thn order or not present  asking to choose other dish ..smthing like dat

@benshelly

vim in linux terminal. OLD SCHOOL :D!

@benshelly

Thought u might use potpie in your example lol bucky

@vyuutuube

great, code of video here:

<?php

$food = array('Pasta', 'Pizza', 'Salad', 'Vegetable');

$food[4]='Fruit';

echo $food[1];
print_r($food);

?>