plaatsen in juist "<td>"
ik heb een tabel met naam en adres.
nu wil ik de gegevens uit de db in de juist kolom krijgen .. dus naam onder naam en uiteraard adres onder adres.
nu heb ik deze code
Code (php)
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
<table cellpadding="0" cellspacing="0" class="info">
<tr>
<td width="20" height="16"></td>
<td width="20" align="center"></td>
<td width="130" align="center" class="bodytext">Name</td>
<td width="80" align="center" class="bodytext">Adres</td>
</tr>
<tr>
<td colspan="11" background="images/dots.gif" height="1"></td>
</tr>
<tr>
<td width="20" height="16"></td>
<td width="20" align="center"></td>
<td width="130" align="center" class="bodytext">Name</td>
<td width="80" align="center" class="bodytext">Adres</td>
</tr>
<tr>
<td colspan="11" background="images/dots.gif" height="1"></td>
</tr>
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
include ('config.php');
// select all the entries from the table
$sql = "select * from gegevens";
$result = mysql_query($sql) or die(mysql_error());
// echo out the results to the screen
while ($list = mysql_fetch_array($result)) {
echo "{$list['naam']} ";
echo "{$list['adres']} ";
[/code]
[code]
<td align="center">[code]<?php echo("$naam"); ?></td>
<td align="center"><?php echo("$adres"); ?></td>
nu krijg ik alles gewoon naast elkaar
include ('config.php');
// select all the entries from the table
$sql = "select * from gegevens";
$result = mysql_query($sql) or die(mysql_error());
// echo out the results to the screen
while ($list = mysql_fetch_array($result)) {
echo "{$list['naam']} ";
echo "{$list['adres']} ";
[/code]
[code]
<td align="center">[code]<?php echo("$naam"); ?></td>
<td align="center"><?php echo("$adres"); ?></td>
nu krijg ik alles gewoon naast elkaar
Gewijzigd op 01/01/1970 01:00:00 door Sander R
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
$sql = "
SELECT *
FROM gegevens
";
if(!$res = mysql_query($sql))
{
trigger_error(mysql_error());
}
else
{
echo '<table>';
echo '<tr><td>Naam:</td><td>Adres:</td></tr>';
while($row = mysql_fetch_assoc($res))
{
echo '<tr><td>'.$row['naam'].'</td><td>'.$row['adres'].'</td></tr>';
}
echo '</table>';
}
?>
$sql = "
SELECT *
FROM gegevens
";
if(!$res = mysql_query($sql))
{
trigger_error(mysql_error());
}
else
{
echo '<table>';
echo '<tr><td>Naam:</td><td>Adres:</td></tr>';
while($row = mysql_fetch_assoc($res))
{
echo '<tr><td>'.$row['naam'].'</td><td>'.$row['adres'].'</td></tr>';
}
echo '</table>';
}
?>
Wat is er mis met:
?
Ontopic: Gebruik <tr>'s en <td>'s wanneer je de data gaat echoen om de juiste tabel op te maken. En kijk eens in de html-broncode (browser) wat het uiteindelijke resultaat is.
Code (php)
1
2
3
4
5
2
3
4
5
<?
while ($list = mysql_fetch_array($result)) {
echo '<tr><td>'.$list['naam'].'</td><td>'.$list['adres'].'</td></tr>';
}
?>
while ($list = mysql_fetch_array($result)) {
echo '<tr><td>'.$list['naam'].'</td><td>'.$list['adres'].'</td></tr>';
}
?>
De rest mag je zelf doen.
Gewijzigd op 01/01/1970 01:00:00 door Frank -
ah .. ik zie ut dank u :) .. tis wel wat aangepast maar werkt super