PHP gevorderde |
|
verander in elk geval het volgende:
<table width="<?= $aantal_kolommen * $kolom_breedte ?>" border="1" cellspacing="2" cellpadding="2">
<table width="<?= $aantal_kolommen * $kolom_breedte ?>" border="1" cellspacing="2" cellpadding="2">
naar:
<table width="<?php echo ($aantal_kolommen * $kolom_breedte) ?>" border="1" cellspacing="2" cellpadding="2">
<table width=" <?php echo ($aantal_kolommen * $kolom_breedte) ?>" border="1" cellspacing="2" cellpadding="2">
voor de rest heb je het zowel in IE als in Firefox??
ik gebruik steeds CSS om dat probleem op te lossen.
|