ok... checkboxes
you can go about this a few different ways, but I'll go through the basic using only two checkboxes
let's say the two are named $receive_newsletter and $email _alert
before you retrieve the data from the db, set both of these to be empty
$receive_newsletter = "";
$email_alert = "";
if a value is present from the db pull, change the value
$email_alert = " checked";
make sure that first space is in there.
now, when displaying the checkboxes, add in the variable:
echo "<input type='checkbox' name='email_alert' value='1'$email_alert>\n";
echo "<input type='checkbox' name='receive_newsletter' value='1'$receive_newsletter>\n";
make sense?
now, 'those large text entry boxes', or textarea...
echo "<textarea name='description' cols=40 rows=10>$value_to_be_inserted</textarea>\n";
as for file selection, your best bet would be to list the current file being used aling with a thumbnail next to/underneath the selection box
-=Lazzerous=-