login  Naam:   Wachtwoord: 
Registreer je!
 Forum

Een spatie tussen kolomen maken

Offline herontdek - 11/10/2005 19:12
Avatar van herontdekNieuw lid http://www.herontdek.be/test/index.php
zoals je ziet plakt die tekst tegen elkaar wat kan ik daaraan doen?
dit is de index code
  1. <html>
  2. <head>
  3. <title>horecalijst</title>
  4. </head>
  5. <body>
  6.  
  7. <style>
  8. <?PHp include 'style.css' ?>
  9. </style>
  10.  
  11. <h3>horeca lijst</h3>
  12.  
  13. <a href='voegtoe.php'>Klik hier om een horecazaak toe te voegen.</a><br>
  14. <br>
  15.  
  16. <?php
  17.  
  18. include 'config.php';
  19.  
  20. $aNavigation = sqlnav ($rDatabaseConnection, 'script_scripts', 'p', 15, SQLNAV_BOTH, 0);
  21.  
  22. $sSqlGetScripts = 'SELECT * FROM script_scripts ORDER BY script_categorie ASC
  23. LIMIT '.$aNavigation['startpoint'].', '.$aNavigation['endpoint'];
  24. $rSqlGetScripts = mysql_query ($sSqlGetScripts, $rDatabaseConnection);
  25.  
  26. if (mysql_num_rows ($rSqlGetScripts) !== 0)
  27. {
  28. ?>
  29.  
  30. <table border='0'>
  31. <tr>
  32. <td>horecazaak : </td>
  33. <td>Stad: </td><td>Categorie: </td><td>Aantal Replies: </td><td>Rating </td></tr>
  34.  
  35. <?php
  36. while ($aSqlGetScripts = mysql_fetch_assoc ($rSqlGetScripts))
  37. {
  38. ?>
  39. <tr><td><?php echo '<a href="bekijk.php?id='.$aSqlGetScripts['script_id'].'">'.$aSqlGetScripts['script_naam'].'</a>'; ?></td>
  40. <td><?php echo $aSqlGetScripts['script_auteur']; ?></td>
  41. <td><?php echo '<b>'.$aSqlGetScripts['script_categorie'].'</b>'; ?></td>
  42. <td><?php echo mysql_num_rows (mysql_query ('SELECT script_id FROM script_replies WHERE script_id = '.$aSqlGetScripts['script_id'])) ?></td>
  43. <td><?php for ($i = 1; $i <= intval ($aSqlGetScripts['script_rating']); $i++) echo '<img src="full.gif"> '; ?>
  44. <?php for ($iTeller = 1; $iTeller <= (11 - $i); $i++) echo '<img src="empty.gif"> '; ?></td></tr>
  45.  
  46. <?php
  47. }
  48.  
  49. echo '</table><p><br>'.$aNavigation['navigation'];
  50. }
  51. else
  52. {
  53. echo 'Er zijn nog geen scripts.';
  54. }
  55. ?>
  56. </body>
  57. </html>
alvast heel veel dank bij voorbaat

1 antwoord

Gesponsorde links
Offline Thomas - 11/10/2005 19:23
Avatar van Thomas Moderator cellpadding omhoog gooien (table-attribuut)

  1. <table border="0" cellspacing="0" cellpadding="5">
  2. <tr>
  3. <td>...</td>
  4. ...
  5. </table>
Gesponsorde links
Dit onderwerp is gesloten.
Actieve forumberichten
© 2002-2025 Sitemasters.be - Regels - Laadtijd: 0.196s