[snip] > </tr> > <!--<input name="modell" type="hidden" value="<?php > //echo $modell; ?>">--> > <input name="modellId" type="hidden" value="<?php echo > $row_Recordset1['modellId']; ?>"> > <?php } while ($row_Recordset1 = > mysql_fetch_assoc($Recordset1)); ?> > </table>
Your problem is probably right here. Why do you have output between the </tr> and </table> tag? Since that doesn't make sense, there shouldn't be any data there, it's now up to your browser to decide where to place it. Most browsers will bunch it all together before or after the table. So place your commented out <input> tag inside or outside of your table. ---John W. Holmes... PHP Architect - A monthly magazine for PHP Professionals. Get your copy today. http://www.phparch.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php