محمد الحربي نشر 12 أبريل 2020 أرسل تقرير نشر 12 أبريل 2020 Write a php code that creates an associative array where the key indexes are the persons' names and the values are their height Heights - (And display these values (echo - Using a llop - Loop - اقتباس
0 عزام عبد الحافظ نشر 25 أبريل 2020 أرسل تقرير نشر 25 أبريل 2020 هذا هو الكود بلغة php : <!DOCTYPE html> <html> <head> </head> <body> <h1>Associative Array</h1> <?php //html داخل ال php طريقة إستخدام // ,إنشاء المصفوفة //Adam المفتاح , cmالقيمة 170 $arr = array('Adam' => '170 cm', 'Ali' => '176 cm'); // متغيرات تشير إلى المفتاح و القيمة, عملية التكرار $key و $value foreach ($arr as $key => $value) { echo 'Name : ' . $key . ' Height: ' . $value . '<br/>'; } ?> </body> </html> اقتباس
السؤال
محمد الحربي
Write a php code that creates an associative array where the key indexes are the persons' names and the values are their height
Heights -
(And display these values (echo -
Using a llop -
Loop -
1 جواب على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.