Hi,
I'm quite new to php...How do i get the 1st and last value of an array??
I wanted to add the 1st array and last array so it'll look some thing like 'Value1 to Value20'.
here's my code---------
//after some queries
while ($row5 = mysql_fetch_row($result5))
{
$imei = $imei.$row5[0]."\n";
}
$resultheight = $quantity;
if($type = 'TopUpVouchers' && $quantity >= 6){
$pdf->MultiCell(60,6,"to",0,'L');// <------PROBLEM here
}else{
$pdf->MultiCell(60,6,"$imei",0,'L'); //<---This has no problem (it
//displays in a list)
}
By the way, I'm generating pdf...
Thanks In Advance
GSR