محمد الحربي نشر 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 Mohamd Imran نشر 12 أبريل 2020 أرسل تقرير نشر 12 أبريل 2020 بتاريخ On 4/12/2020 at 16:47 قال محمد الحربي13: 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 السلام عليكم @محمد الحربي13 الإجابة خاطِئة الصحيح هكذا $person = [ 'malak' => '130 cm', 'hamad' => '126 cm', 'maisa' => '150 cm', 'ali' => '140 cm']; //Loop through person array //start loop foreach ($person as $key => $value) { echo 'Person name : ' . $key . ' his heights is : ' . $value . '<br/>'; } تحياتي اقتباس
السؤال
محمد الحربي
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
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.