Hello, so... I have this code(and I have a connection to the DB before, its just a example... ): [code] <html> <body> <form action="<?php Print $PHP_SELF ?>" method="POST"> <input type="submit" name="asd" value="Delete!"><BR> <?php $Result = mysql_query("SELECT * FROM GuestBook ORDER BY Date DESC"); while($a_row = mysql_fetch_row($Result)){ echo "<input type='checkbox' name='DeleteMe[]' value='$a_row'><BR>"; echo "</form>"; } if($_POST['asd']){ $a=$_POST['DeleteMe']; if(is_array($a)){ echo "yes"; foreach($a as $value) echo $value; } else echo "no"; } ?> </body> </html> [/code] I dont here that it will print me each time CheckBox, and to the CheckBox will be the value of the row that he get out of the DataBase. Then I dont that it check if what I'm sending is a array, If it is, he need to print me "yes", and then he need to print me every var that in the array. now, the problem is that just if im mark the first Checkbox, prints me: "yesArray" But why? Its true that it's array, but why he doesnt print every var in the array? And if I'm marking other CheckBox, except of the first CheckBox, it's print s me "no". But why? Its doesn't a array? Why just if I'm marking the firs CheckBox It's prints that its a array, And why he doesn't prints me all the vars that exist in the array? Thanks!