BZU PAGES: Find Presentations, Reports, Student's Assignments and Daily Discussion; Bahauddin Zakariya University Multan

BZU PAGES: Find Presentations, Reports, Student's Assignments and Daily Discussion; Bahauddin Zakariya University Multan (http://bzupages.com/index.php)
-   Tutorial (http://bzupages.com/forumdisplay.php?f=4)
-   -   [PHP] Multidimensional Array (http://bzupages.com/showthread.php?t=502)

BSIT07-01 13-06-2008 12:32 AM

[PHP] Multidimensional Array
 
Alsalam O Alaikum

Check out this tiny PHP file to add 1st 5th and 9th number in multidimensional array(Two dimensional in my case)


http://bzupages.com/php/array.php


If you need the coding of this file , please reply here & I will post the coding here

Thanks

!!Ahmad Mushtaq!! 13-06-2008 11:35 PM

Re: [PHP] Multidimensional Array
 
Assalama-o-Alaikum!

Great! Thanx a lot! Will you please give me the code? :)

BSIT07-01 14-06-2008 02:15 AM

Re: [PHP] Multidimensional Array
 
1 Attachment(s)
Here is the Code...
It's not being displayed Perfectly because site is taking this as HTML and is showing Line breaks where I have used < BR > tag . So download the attached file for original Coding

thanks

PHP Code:

<?PHP


$myarray
[0][0]=rand(0,100);
$myarray[0][1]=rand(0,100);
$myarray[0][2]=rand(0,100);
$myarray[1][0]=rand(0,100);
$myarray[1][1]=rand(0,100);
$myarray[1][2]=rand(0,100);
$myarray[2][0]=rand(0,100);
$myarray[2][1]=rand(0,100);
$myarray[2][2]=rand(0,100);

echo 
$myarray[0][0]."&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;".$myarray[0][1]."&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;".$myarray[0][2]."".$myarray[1][0]."&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;".$myarray[1][1]."&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;".$myarray[1][2]."".$myarray[2][0]."&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;".$myarray[2][1]."&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;".$myarray[2][2];

print 
"";



$sum=$myarray[0][0]+$myarray[1][1]+$myarray[2][2];
echo 
'Sum of 1st 5th and 9th element is '.$sum;

?>

Kyun Ho gaya na !!!!



All times are GMT +5. The time now is 07:20 PM.

Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.