Hello Beau
I tried to use the way you suggested. I got "Fatal error: Unsupported operand types in /home/www/netpro/netpro1.1/center_setup.php on line 245"
error message and I do not understand why?. Line 245 is $inp_fields = $link-$group_id-$topic_id[$i]; and it is complaining about that. What could be wrong? Why do I get that error message??
Below is part of the code...
while($row4 = mysql_fetch_array($result4)){
$topic_id[] = $row4["topic_id"];
$topic_name[] = $row4["name"];
$common_deadline[] = $row4["common_deadline"];
}
$inp_fields = array();
for($i = 0; $i < count($topic_name); $i++){
$inp_fields = $link-$group_id-$topic_id[$i];
echo ("<TR bgcolor='#FFFFFF'>\n");
echo ("<td width='64' height='28'><font size='1' face='Arial, Helvetica'>$topic_name[$i]</font></td> \n");
echo ("<td width='60'><input TYPE='text' NAME='link-$group_id-$topic_id[$i]' value='$common_deadline[$i]' size='10'></td>\n");
echo ("<td width='50'> </font></td> \n");
Thanks again