I have the following code
<?php
        $result = mysql_query("SELECT * FROM table1");
        $row = mysql_fetch_row($result);
        while($row = mysql_fetch_array($result))
        { 
            //Do some process
            //Then delete this row 
        }
I need to delete each row within the while loop.
is it possible?there is no primary key for this table
 
     
     
     
    