Mysql tabel
Simax - 09/10/2006 09:16 (laatste wijziging 10/10/2006 08:49)
Onbekend
Beste mensen,
Aan jullie de vraag of aan onderstaande code nog iets ontbreekt?
<html>
<head>
<title></title>
<link href='style.css' rel='stylesheet' type='text/css'/>
</head>
<body>
<p class='black'>
<a name='crew' class='black'><b>Crew</b></a>
</p>
<?php
Mysql_connect('localhost', 'gebruikersnaam', 'wachtwoord');
Mysql_select_db('crew');
$res= Mysql_query('Select naam, woonplaats From crew')
or die(Mysql_error());
echo "<table cellpadding='1' cellspacing='1'>";
echo "<tr>";
echo "<th id='naam'><p class='white'>Naam</p></th>";
echo "</tr>";
while($arr= Mysql_fetch_assoc($res))
{
echo "<tr>";
echo "<td id='naam'><p class='black'>".$arr['naam']."</p></td>";
echo "</tr>";
}
echo "</table>";
Mysql_free_result($res);
Mysql_close();
?>
</body>
</html>
<html>
<head>
<title></title>
<link href='style.css' rel='stylesheet' type='text/css'/>
</head>
<body>
<p class='black'>
<a name='crew' class='black'><b>Crew</b></a>
</p>
<?php
echo "<table cellpadding='1' cellspacing='1'>" ; echo "<th id='naam'><p class='white'>Naam</p></th>" ;
{
echo "<td id='naam'><p class='black'>" . $arr [ 'naam' ] . "</p></td>" ; }
?>
</body>
</html>
Alvast bedankt .
MvG,
Generix
11 antwoorden
Gesponsorde links
nielsvdwal - 09/10/2006 09:24 (laatste wijziging 09/10/2006 09:25)
PHP gevorderde
ja er ontbreekt iets.. kijk naar de kleuren in de code en je ziet het..
btw..
<th id='naam'><p class='white'>Naam</p></th>
???
Simax - 09/10/2006 09:27 (laatste wijziging 09/10/2006 09:42)
Onbekend
Ok.
Vertel volgende keer wat er fout is.
Iemand enig idee wat ik hier fout doe?
En die mij kan helpen.
MvG,
Generix
Simax - 09/10/2006 09:55 (laatste wijziging 09/10/2006 10:30)
Onbekend
Ok.
Volgens mij is dat niet nodig,
maar heb ik alleen ergens een fout gemaakt.
Iemand die mij kan helpen?
En eventueel uit kan leggen wat ik moet veranderen.
MvG,
Generix
Analog - 09/10/2006 10:46
HTML interesse
Citaat:
$res = Mysgl_query('Select naam, woonplaats From crew')
Moet zijn:
$res = Mysql_query('Select naam, woonplaats From crew')
kleine typo
Dark_Paul - 09/10/2006 10:51
PHP ver gevorderde
Wat al gezegd is, kijk naar de kleuren. Dit gaat je errors opleveren.
<?php // voor 't kleurtje
echo '<table cellpadding='1' cellspacing='1'>';
echo '<table cellpadding="1" cellspacing="1">';
?>
<?php // voor 't kleurtje
echo '<table cellpadding=' 1 ' cellspacing=' 1 '>' ;
echo '<table cellpadding="1" cellspacing="1">' ; ?>
Vergelijk de 2, welke denk je dat gaat werken?
Hint: bij de bovenste sluit je je echo-quotes steeds waardoor je een error zal krijgen
Analog - 09/10/2006 16:47 (laatste wijziging 09/10/2006 16:48)
HTML interesse
<html>
<head>
<title></title>
<link href='style.css' rel='stylesheet' type='text/css'/>
</head>
<body>
<p class='black'>
<a name='crew' class='black'><b>Crew</b></a>
</p>
<?php
Mysql_connect('localhost', 'gebruikersnaam', 'wachtwoord');
Mysql_select_db('crew');
$res = Mysql_query('SELECT naam, woonplaats FROM crew')
or die(Mysql_error());
echo '<table cellpadding="1" cellspacing="1">';
echo '<tr>';
echo '<th id="naam"><p class="white">Naam</p></th>';
echo '</tr>';
while($arr = Mysql_fetch_assoc($res))
{
echo '<tr>';
echo '<td id="naam"><p class="black">'.$arr['naam'].'</p></td>';
echo '</tr>';
}
echo '</table>';
Mysql_free_result($res);
Mysql_close();
?>
</body>
</html>
<html>
<head>
<title></title>
<link href='style.css' rel='stylesheet' type='text/css'/>
</head>
<body>
<p class='black'>
<a name='crew' class='black'><b>Crew</b></a>
</p>
<?php
$res = Mysql_query ( 'SELECT naam, woonplaats FROM crew' )
echo '<table cellpadding="1" cellspacing="1">' ; echo '<th id="naam"><p class="white">Naam</p></th>' ;
{
echo '<td id="naam"><p class="black">' . $arr [ 'naam' ] . '</p></td>' ; }
?>
</body>
</html>
Zoek de verschillen
Clemens32 - 10/10/2006 09:15 (laatste wijziging 10/10/2006 09:18)
PHP interesse
echo '<img src="pad/naamplaatje.extensie">';
[edit]
Als je iets echoed met enkele quotes hoef je je dubbele quotes daarbinnen niet te escapen.
Voorbeeld:
echo "<td width=\"150px\" heigth=\"300px\" bgcolor=\"#FFFFFF\">";
of
echo '<td width="150px" height="300px" bgcolor="#FFFFFF">';
[/edit]
Simax - 10/10/2006 09:35 (laatste wijziging 10/10/2006 09:42)
Onbekend
Hoi
Nu wil ik een plaatje invoegen wat uit de database word gehaald.
Leden vullen hun geboorteland in en dan verschijnt in het overzicht een plaatje. Doe ik dit op de juiste manier?
<html>
<head>
<title></title>
<link href='style.css' rel='stylesheet' type='text/css'/>
</head>
<body>
<p class='black'>
<a name='crew' class='black'><b>Crew</b></a>
</p>
<?php
Mysql_connect('localhost', 'gebruikersnaam', 'wachtwoord');
Mysql_select_db('crew');
$res= Mysql_query('Select land, naam From crew')
or die(Mysql_error());
echo "<table cellpadding='1' cellspacing='1'>";
echo "<tr>";
echo "<th id='land'></th>";
echo "<th id='naam'><p class='white'>Naam</p></th>";
echo "</tr>";
while($arr= Mysql_fetch_assoc($res))
{
echo "<tr>";
echo "<td id='land'><img src=".$arr['land']." class='land'/></td>";
echo "<td id='naam'><p class='black'>".$arr['naam']."</p></td>";
echo "</tr>";
}
echo "</table>";
Mysql_free_result($res);
Mysql_close();
?>
</body>
</html>
<html>
<head>
<title></title>
<link href='style.css' rel='stylesheet' type='text/css'/>
</head>
<body>
<p class='black'>
<a name='crew' class='black'><b>Crew</b></a>
</p>
<?php
echo "<table cellpadding='1' cellspacing='1'>" ; echo "<th id='land'></th>" ; echo "<th id='naam'><p class='white'>Naam</p></th>" ;
{
echo "<td id='land'><img src=" . $arr [ 'land' ] . " class='land'/></td>" ; echo "<td id='naam'><p class='black'>" . $arr [ 'naam' ] . "</p></td>" ; }
?>
</body>
</html>
MvG,
Generix
Gesponsorde links
Dit onderwerp is gesloten .