Nieuw lid |
|
beste,
hoe moet ik nu automatich een nieuwe rij laten beginnen in die tabel , dus bev 4 steden naast elkaar en dan een nieuwe rij met opnieuw 4 en als er meer in die database zitten opnieuw
<html>
<head>
<title>Script Library v2.1!</title>
</head>
<body>
<style>
<?PHp include 'style.css' ?>
</style>
<h3>Script Library</h3>
<a href='voegtoe.php'>Klik hier om een script toe te voegen.</a><br><br>
<?php
include 'config.php';
$aNavigation = sqlnav ($rDatabaseConnection, 'script_scripts', 'p', 15, SQLNAV_BOTH, 0);
$sSqlGetScripts = 'SELECT DISTINCT script_auteur FROM script_scripts
LIMIT '.$aNavigation['startpoint'].', '.$aNavigation['endpoint'];
$rSqlGetScripts = mysql_query ($sSqlGetScripts, $rDatabaseConnection);
if (mysql_num_rows ($rSqlGetScripts) !== 0)
{
?>
<table border="1" cellspacing="0" cellpadding="5">
<?php
while ($aSqlGetScripts = mysql_fetch_assoc ($rSqlGetScripts))
{
?>
<td><?php echo '<a href="index.php?stad='.$aSqlGetScripts['script_auteur'].'">'.$aSqlGetScripts['script_auteur'].'</a>'; ?></td>
<?php
}
echo '</table><p><br>'.$aNavigation['navigation'];
}
else
{
echo 'Er zijn nog geen scripts.';
}
?>
</body>
</html>
<html> <head> <title>Script Library v2.1!</title> </head> <body> <style> <?PHp include 'style.css' ?> </style> <h3>Script Library</h3> <a href='voegtoe.php'>Klik hier om een script toe te voegen.</a><br><br> <?php include 'config.php'; $aNavigation = sqlnav ($rDatabaseConnection, 'script_scripts', 'p', 15, SQLNAV_BOTH, 0); $sSqlGetScripts = 'SELECT DISTINCT script_auteur FROM script_scripts LIMIT '.$aNavigation['startpoint'].', '.$aNavigation['endpoint']; $rSqlGetScripts = mysql_query ($sSqlGetScripts, $rDatabaseConnection); { ?> <table border="1" cellspacing="0" cellpadding="5"> <?php { ?> <td> <?php echo '<a href="index.php?stad='.$aSqlGetScripts['script_auteur'].'">'.$aSqlGetScripts['script_auteur'].'</a>'; ?></td> <?php } echo '</table><p><br>'.$aNavigation['navigation']; } else { echo 'Er zijn nog geen scripts.'; } ?> </body> </html>
dank bij voorbaat
|