Hope this helps.
PHP Code:
<?php
if ($_POST['action'] != 'update') {
/* get the data from the database
* let's say $row['urls'] has the data for now */
$selarray = explode(' ', $row['urls']);
/* now just echo all checkboxes for all urls
* for the checkbox, use this:
* (assuming $currenturl has the url of the current checkbox) */
echo '<input type="checkbox" name="urlarray[]" value="'.htmlspecialchars($currenturl).'"'.iif(in_array($currenturl, $selarray), ' checked', '').'>';
} else {
$urldata = implode(' ', $urlarray);
/* update the table with userid and urls with $urldata */
}