Teddy D

Generation

translateMon, 30 Jan 2023

call $item and paste to array

<?php $array = array( "name" => "Thanh", "age" => "20", "phone" => "0987654321", "email" => "thanh@gmail.com" ); print_r($array); echo "<br>"; echo $array["name"]; echo "<br>"; echo $array["age"]; echo "<br>"; echo $array["phone"]; echo "<br>"; echo $array["email"]; ?>

Questions about programming?Chat with your personal AI assistant