PHP Simple QA
It contains Simple Questions and Answers in PHP
syntax of php array
syntax of php array
array(key => value)
<?php
$a=array("a"=>"Ma","b"=>"ba","c"=>"Ca");
print_r($a);
?>
Results will be
Array ( [a] => Ma [b] => ba [c] => Ca)
Newer Post
Older Post
Home