This line:
<input type="text" class="content" name="description['.$row['project_id'].']">
Should be:
<input type="text" class="content" name="description[<?php echo $row['project_id']; ?>]">
Second:
When you are reading these values (in form handling script) use something like:
if(isset($_POST['description']) && is_array($_POST['description'])){
while(list($key,$value) = each($_POST['description'])){
//in $key is the key of the array item - or in this case the value of the $row['project_id']
// in $value is the value of the array item - or in this case whatever is a value of the every given field
}
}
Or I completely misunderstood what you are trying to do...