plz help as my code is not running. its not printing array
[PHP]<?php
$i=1;
$j=0;
$pidarray=array ();
while($i<10)
{
$pidarray[$j]=$i;
$i++;
$j++;
}
print_r($pidarr ay[$j]);
?>[/PHP]
i think its correct formate
as i received 3 warnings
[PHP]<?php
$i=1;
$j=0;
$pidarray=array ();
while($i<10)
{
$pidarray[$j]=$i;
$i++;
$j++;
}
print_r($pidarr ay[$j]);
?>[/PHP]
i think its correct formate
as i received 3 warnings
Comment