to all php gurus
how can i store data into array which will start immediately at storage 1 not storage 0
here is the simpliest code
$string="hello,world,im, new, here";
$split=explode(",",$string);
where $split[1] =="hello" not "world"
And here is the original code
----------- entry.php--------
<body>
<form name="formmenu" method="post" action="">
<table width="425" height="117" border="1" align="center">
<tr>
<td width="415">
<textarea name="topmenu" cols="50" rows="2"></textarea> </td>
</tr>
<tr>
<td>
<input name="Submit" type="submit" onClick="MM_openBrWindow('menuoutput.php?topmenu='+ window.formmenu.topmenu.value ,'menureview','width=400,height=400');return false;" value="Submit"> </td>
</tr>
--- menuoutput.php -----------
$topmenu=$_GET['topmenu'];
$split=explode(",",$topmenu);
$numtopmenu=count($split);