Onbekend |
|
Hallo,
Ik zit met nog een probleem wat tabellen betrefd.
Dit is wat ik wil:
http://www.wyger.nl/usr/animatiestart/help.jpg
Dus gewoon 2 tabellen boven tabel S.
En hier zie je een voorbeeld:
http://www.wyger.nl/usr/animatiestart/
Zo moet het dus uit komen te zien. Alleen is http://www.wyger.nl/usr/animatiestart/, compleet in html en http://www.wyger.nl/usr/animatiestart/link met een database.
Dit is de index:
<?php
include "config.inc.php";
mysql_connect( $server, $user, $password);
mysql_select_db($database);
$cat_sql = "SELECT * FROM cat ORDER by place";
$cat_result = mysql_query($cat_sql);
?>
<link rel="stylesheet" href="style.css" type="text/css">
<title>Animatiestart.nl</title>
</head>
<body bgcolor="#CCCCCC" background="achtergrond.jpg" topmargin="20" leftmargin="0" marginheight="0"
marginwidth="0">
<div align="center">
<table width="95%" id="table-up" cellspacing="0" cellpadding="0" bordercolor="#000000" style="border: 1px solid #000000">
<tr>
<td><center><BR>
<TABLE WIDTH=720 height=85 CELLPADDING=3 CELLSPACING=0 BORDER=0 bordercolorlight=#000000 background="test.jpg">
<TR>
<td></TD>
</TR>
</TABLE>
<BR>
<TABLE WIDTH=88% height="0" CELLPADDING=5 CELLSPACING=0 BORDER=1 bordercolorlight=#000000>
<TR BGCOLOR=#EF800A>
<TD WIDTH=68%><b>Menu:</b> </td>
<td width="100%"><a href="http://www.wyger.nl/usr/animatiestart/links/partners.php">Linkpartners</a> | <a href="http://www.wyger.nl/usr/animatiestart/contact.php">Contact</a> | <a href="lol">Plaatjes info</a></td>
</TR>
</table>
<br>
<TABLE WIDTH=88% CELLPADDING=5 CELLSPACING=0 BORDER=1 bordercolorlight=#000000>
<TR BGCOLOR=#EF800A>
<TD WIDTH=80%><b>Welkom</b></TD>
</TR>
<TR>
<TD COLSPAN=2 BGCOLOR=#DFDFDF>
Van harte welkom op animatiestart.nl. Opzoek naar animaties? STOP met zoeken! Wij hebben
al voor je gezocht. Alle categorieën zijn onder verdeeld in letters A t/m Z. Als
je bijvoorbeeld iets van kerstbomen zoek, ga dan naar de letter K en de rest
volg vanzelf. Verder zullen wij mee gaan met de tijden. Denk bijv aan kerst,
dan krijgen wij een aparte kerstpagina met honderden animatie's & andere leuke dingen! Veel succes met animatiestart...
</TD>
</TR>
</TABLE>
<BR>
<table width ="90%" align="center" cellspacing="5" cellpadding="5" border="1">
<tr>
<td valign="top">
<?php
while($cat_data = mysql_fetch_array($cat_result)){
$link_sql = "SELECT * FROM link WHERE cat_ID=".$cat_data['cat_ID'];
$link_result = mysql_query($link_sql);
$kolom=$kolom+1;
$cats = mysql_num_rows($cat_result);
$catpercol = round( ($cats/3),0);
$catpercol1 = $catpercol+1;
$catpercol2 = $catpercol1 + $catpercol;
if($kolom==$catpercol1 OR $kolom==$catpercol2 ){
echo "</td>\n <td valign=\"top\" width=\"33%\">";
}else{
echo "\n";
}
?>
<TABLE WIDTH="100%" CELLPADDING="2" CELLSPACING="0" BORDER="1" bordercolorlight="#000000">
<TR BGCOLOR="#EF800A">
<TD ALIGN="TOP" WIDTH="100%"><b><?=$cat_data['cat']?></b></TD>
</TR>
<TR>
<TD VALIGN="TOP" COLSPAN="2" BGCOLOR="#DFDFDF">
<?php
if(mysql_num_rows($link_result)==0){
echo ("Geen links in deze categorie.");
}else{
while($link_data = mysql_fetch_array($link_result)){
echo "- <a href='".$link_data['url']."' class='dark'>".$link_data['text']."</a><br>";
}
}
?>
</TD>
</TR>
</TABLE>
<BR><br>
<?php
}
?>
</td>
</tr>
</table>
</body>
</html>
<?php include "config.inc.php"; $cat_sql = "SELECT * FROM cat ORDER by place"; ?> <link rel="stylesheet" href="style.css" type="text/css"> <title>Animatiestart.nl</title> </head> <body bgcolor="#CCCCCC" background="achtergrond.jpg" topmargin="20" leftmargin="0" marginheight="0" marginwidth="0"> <div align="center"> <table width="95%" id="table-up" cellspacing="0" cellpadding="0" bordercolor="#000000" style="border: 1px solid #000000"> <tr> <td><center><BR> <TABLE WIDTH=720 height=85 CELLPADDING=3 CELLSPACING=0 BORDER=0 bordercolorlight=#000000 background="test.jpg"> <TR> <td></TD> </TR> </TABLE> <BR> <TABLE WIDTH=88% height="0" CELLPADDING=5 CELLSPACING=0 BORDER=1 bordercolorlight=#000000> <TR BGCOLOR=#EF800A> <TD WIDTH=68%><b>Menu:</b> </td> <td width="100%"><a href="http://www.wyger.nl/usr/animatiestart/links/partners.php">Linkpartners</a> | <a href="http://www.wyger.nl/usr/animatiestart/contact.php">Contact</a> | <a href="lol">Plaatjes info</a></td> </TR> </table> <br> <TABLE WIDTH=88% CELLPADDING=5 CELLSPACING=0 BORDER=1 bordercolorlight=#000000> <TR BGCOLOR=#EF800A> <TD WIDTH=80%><b>Welkom</b></TD> </TR> <TR> <TD COLSPAN=2 BGCOLOR=#DFDFDF> Van harte welkom op animatiestart.nl. Opzoek naar animaties? STOP met zoeken! Wij hebben al voor je gezocht. Alle categorieën zijn onder verdeeld in letters A t/m Z. Als je bijvoorbeeld iets van kerstbomen zoek, ga dan naar de letter K en de rest volg vanzelf. Verder zullen wij mee gaan met de tijden. Denk bijv aan kerst, dan krijgen wij een aparte kerstpagina met honderden animatie's & andere leuke dingen! Veel succes met animatiestart... </TD> </TR> </TABLE> <BR> <table width ="90%" align="center" cellspacing="5" cellpadding="5" border="1"> <tr> <td valign="top"> <?php $link_sql = "SELECT * FROM link WHERE cat_ID=".$cat_data['cat_ID']; $kolom=$kolom+1; $catpercol = round( ($cats/3),0); $catpercol1 = $catpercol+1; $catpercol2 = $catpercol1 + $catpercol; if($kolom==$catpercol1 OR $kolom==$catpercol2 ){ echo "</td>\n <td valign=\"top\" width=\"33%\">"; }else{ } ?> <TABLE WIDTH="100%" CELLPADDING="2" CELLSPACING="0" BORDER="1" bordercolorlight="#000000"> <TR BGCOLOR="#EF800A"> <TD ALIGN="TOP" WIDTH="100%"><b><?=$cat_data['cat']?></b></TD> </TR> <TR> <TD VALIGN="TOP" COLSPAN="2" BGCOLOR="#DFDFDF"> <?php echo ("Geen links in deze categorie."); }else{ echo "- <a href='".$link_data['url']."' class='dark'>".$link_data['text']."</a><br>"; } } ?> </TD> </TR> </TABLE> <BR><br> <?php } ?> </td> </tr> </table> </body> </html>
Ik hoop dat iemand mij verder kan helpen. Alvast heel erg bedankt!
Kees.
|