View Full Version : Numeric Arrays
Zeater
11-21-2007, 03:38 PM
Using a Numeric Array, how I add and delete data?
aedrin
11-21-2007, 04:29 PM
$array = array();
$array[] = 'Something';
$array[] = 'Another thing';
$array[] = 'A third thing';
unset($array[2]);
vBulletin® v3.8.2, Copyright ©2000-2012, Jelsoft Enterprises Ltd.