OK, here's the code from first.php
---------------------------
<form action="second.php" method="GET">
<?
$result = mysql_query ("SELECT id,food,description,price,order FROM Offer_food"

;
$j=1;
while ($row = mysql_fetch_array ($result)) {
?>
<table width="506" border="0" cellspacing="0" cellpadding="0">
<tr class="podpodnaslov3">
<td width="35">
<?=($i+1)?>.<input type="text" name="order[]" value="<?=$row["order"]?>" style="width: 20; height: 18; font-size: 11px; font-weight: bold">
</td>
<td width="381" align="left" valign="top">
<input type="text" name="food[]" value="<?=$row["food"]?>" style="width: 150; height: 18; font-size:11px; font-weight: bold">
<input type="hidden" name="offer_id[]" value="<?=$row["id"]?>">
</td>
<td width="90" align="left" valign="top">
<input type="text" name="price[]" value="<?=$row["price"]?>" style="width: 40; height: 18; font-size: 11px"> SIT
</td>
</tr>
<tr class="podvsebina3">
<td> </td>
<td align="left" valign="top">
<input name="description[]" type="text" id="description[]" style="width: 200; height: 18; font-size:10px" value="<?=$row["description"]?>">
</td>
<td align="left">
<input type="checkbox" name="checkbox[<?=$j_1?>]">briši
</td>
</tr>
<tr>
<td height="10"><img src="<?=$path?>_images/blanks/transparent1x1.gif" width="35" height="10"></td>
<td height="10"><img src="<?=$path?>_images/blanks/transparent1x1.gif" width="1" height="1"></td>
<td height="10"><img src="<?=$path?>_images/blanks/transparent1x1.gif" width="1" height="10"><img src="<?=$path?>_images/blanks/transparent1x1.gif" width="1" height="1"></td>
</tr>
</table>
<?
$j++;
$j_1++;
}
?>
</form>
---------------------------
Here's second.php
<?
print_r($HTTP_GET_VARS);
?>
---------------------------
In the browsers URL - localhost/second.php?variable=12345678
All the variables in the arrays have first 4 chars removed.
variable, if we echo, the PHP outputs - 5678.
Clearer now?