This tutorial is about the Array. Array is a list of data. Like
Car // Array name
<?php
$cars[0]="CIVIC";
$cars[1]="CITY";
$cars[2]="SANTRO";
echo $cars[0] . " and " . $cars[1] . " are Honda products.";
?>
Car // Array name
- CIVIC // data of array
- CITY // data of array
- SANTRO // data of array
<?php
$cars[0]="CIVIC";
$cars[1]="CITY";
$cars[2]="SANTRO";
echo $cars[0] . " and " . $cars[1] . " are Honda products.";
?>
this is just simple and good tutorial
ReplyDelete