omgang met je query
Berry Kloes
16/11/2009 17:18:00@santhe
Kleine foutjes lieten hem niet werken. Nu werkt hij prima super bedankt!
Kleine foutjes lieten hem niet werken. Nu werkt hij prima super bedankt!
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
$link = mysql_connect('localhost', 'Mitchel9_pronoob', '********');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db('Mitchel9_rooster', $link) or die ("rooster Database not found. Mitchel9_pronoob");
$result = mysql_query('select * FROM rooster');
if($result)
{
while($row= mysql_fetch_assoc($result))
{
echo $row['naam'];
}
}
mysql_close($link);
?>
$link = mysql_connect('localhost', 'Mitchel9_pronoob', '********');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db('Mitchel9_rooster', $link) or die ("rooster Database not found. Mitchel9_pronoob");
$result = mysql_query('select * FROM rooster');
if($result)
{
while($row= mysql_fetch_assoc($result))
{
echo $row['naam'];
}
}
mysql_close($link);
?>
Gelieve Niet Bumpen::
Gewijzigd op 01/01/1970 01:00:00 door Berry Kloes
PHP hulp
22/11/2024 11:05:12- SanThe -
16/11/2009 17:28:00while($row= mysql_fetch_assoc($query))
Moet natuurlijk dit zijn.
while($row= mysql_fetch_assoc($result))
Moet natuurlijk dit zijn.
while($row= mysql_fetch_assoc($result))