theimben 1 Junior Poster

Ive got a basic moderation script to create but Im stuck as to how to do it because there would be too much data to transfer as post data.

So heres the premise

$result = mysql_query("SELECT * FROM whatstobemoderated"); 

while($row = mysql_fetch_array($result))
  {
  echo '<input type="checkbox" name="url">' . linkify($row['url']);
  echo "<br />";
  }

If the box is checked I want it to be sent to another table then deleted from this one. If its not checked I want it to be deleted.

How would I do this? Thanks