G george.weballey13 New member Apr 17, 2015 #2 $new_array = array(); $new_array[]='value1'; $new_array[]='value2'; $new_array[]='value3';
K killerboy New member Apr 30, 2015 #3 <?php $cars = array("Volvo", "BMW", "Toyota"); echo "I like " . $cars[0] . ", " . $cars[1] . " and " . $cars[2] . "."; ?>
<?php $cars = array("Volvo", "BMW", "Toyota"); echo "I like " . $cars[0] . ", " . $cars[1] . " and " . $cars[2] . "."; ?>
N nareshverma New member Feb 27, 2016 #4 <?php $cars=array("blue","Red","Yellow"); echo "I like " . $cars[0] . ", " . $cars[1] . " and " . $cars[2] . "."; ?> Postaserver
<?php $cars=array("blue","Red","Yellow"); echo "I like " . $cars[0] . ", " . $cars[1] . " and " . $cars[2] . "."; ?> Postaserver