PHP Tutorial for Beginners 12 # Multidimensional Arrays in PHP

preview_player
Показать описание
php multidimensional array sort
php multidimensional array to string
php multidimensional array add element
PHP multi dimensional array search
Mehrdimensionale Arrays
php multidimensional array foreach
php multidimensional array sort by value
php multidimensional array ausgeben
How to declare a two dimensional array most easily in PHP
php multidimensional array durchsuchen
arrays php
Рекомендации по теме
Комментарии
Автор

I have tried a lot lot tutorials to go through Arrays... Thanks alot Sir... Finally I got them

usmanjaved
Автор

Compliments on the smooth way of explaining

lost
Автор

well saying for utmost beginners who never know about it.

omkarnath
Автор

Thank you so much for doing this video, it helped me BIG time with an assignment I'm working on!

GamingGirl
Автор

thanks sir you help me alot to understand the array in php

rockflyers
Автор

Videos are good
Bt sounds are very low

riyabiswas
Автор

sir can u please make the video on laravel tutorials

anupamanand
Автор

it is great job but how should i align the ages and weights like the it shows in the video?

nabyconde
Автор

sir i have one doubt my array is this
$data=array(array('India'=>'1', 'usa'=>'2'), array('India'=>'3', 'canada'=>'7'));

and i want this output to print
Array('india', '1', '3');

Array('usa', '2', '0');

Array('canada', '7', '0');
how to do

siddhantsawant
Автор

when we do
echo "$student[0][0]" it gives output = array[0]

but when we write echo $student[0][0]
means after removing double quote it is giving correct output why?



<?php

$student=array(array('jyoti', 42, 20),
array('tara', 50, 19),
array('aishwarya', 46, 20));

echo "$student[0][0]";


?>
this is what i tried
why its output is not correct

jyotikawade
Автор

In video no 12 of multidimensional array, the last code in which Name, age, weight is used as key of array is showing warning of undefined constant Name, age and weight .How to remove this

saying
Автор

can this format be implimented without array ?

DipPodderOfficial