Foutmeldingen in script
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
error_reporting(E_ALL);
include("config.php");
$query = "
SELECT
le.naam,
le.site,
le_categorie.categorie
FROM
le,
le_categorie
WHERE
le.categorie = le_categorie.categorie
";
$result = mysql_query($query);
if(!$result){ // query is mislukt
echo 'Fout: '.mysql_error().' met query: '.$query;
die(); // kan beter...
}
/*$content = array();
while($row = mysql_fetch_array($result))
{
$content[$row['categorie']][] = $row['naam'];
}*/
echo "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"
align=\"left\">
<tr>
<td width=\"285\" height=\"14\" bgcolor=\"#096ea1\">
<span class=\"style1\">Links:</span>
</td>
</tr>
</table>";
$tempcategorie = "";
while($row = mysql_fetch_array($result))
{
//als de tempcategorie niet gelijk is aan de categorie
if($tempcategorie!=$row['categorie'])
{
echo"
<body link=#000000 vlink=#000000 alink=#000000>
<b><br />" .$row['categorie']. ":</b><br />
<a href=$row[site]>$row[naam]</a><br />
</body>";
//maak de tempcategorie dezelfde als huidige categorie
$tempcategorie=$row['categorie'];
}
//als de tempcategorie hetzelfde is als de huidige categorie
//post dan alleen de link
else
echo"
<body link=#000000 vlink=#000000 alink=#000000>
<a href=".$row[site].">".$row[naam]."</a><br />
</body>";
}
/*foreach($content as $categorie => $namen)
{
echo "<b><br />" .$categorie. ":</b><br />";
foreach($namen as $naam)
{
echo"
<body link=#000000 vlink=#000000 alink=#000000>
<a href="http://$row[le.site]">$naam</a><br />
</body>";
}
}*/
?>
error_reporting(E_ALL);
include("config.php");
$query = "
SELECT
le.naam,
le.site,
le_categorie.categorie
FROM
le,
le_categorie
WHERE
le.categorie = le_categorie.categorie
";
$result = mysql_query($query);
if(!$result){ // query is mislukt
echo 'Fout: '.mysql_error().' met query: '.$query;
die(); // kan beter...
}
/*$content = array();
while($row = mysql_fetch_array($result))
{
$content[$row['categorie']][] = $row['naam'];
}*/
echo "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"
align=\"left\">
<tr>
<td width=\"285\" height=\"14\" bgcolor=\"#096ea1\">
<span class=\"style1\">Links:</span>
</td>
</tr>
</table>";
$tempcategorie = "";
while($row = mysql_fetch_array($result))
{
//als de tempcategorie niet gelijk is aan de categorie
if($tempcategorie!=$row['categorie'])
{
echo"
<body link=#000000 vlink=#000000 alink=#000000>
<b><br />" .$row['categorie']. ":</b><br />
<a href=$row[site]>$row[naam]</a><br />
</body>";
//maak de tempcategorie dezelfde als huidige categorie
$tempcategorie=$row['categorie'];
}
//als de tempcategorie hetzelfde is als de huidige categorie
//post dan alleen de link
else
echo"
<body link=#000000 vlink=#000000 alink=#000000>
<a href=".$row[site].">".$row[naam]."</a><br />
</body>";
}
/*foreach($content as $categorie => $namen)
{
echo "<b><br />" .$categorie. ":</b><br />";
foreach($namen as $naam)
{
echo"
<body link=#000000 vlink=#000000 alink=#000000>
<a href="http://$row[le.site]">$naam</a><br />
</body>";
}
}*/
?>
Geeft deze output:
Electronica & Gadgets:
Buitensport algemeen2
Hosting & Internetdiensten:
Hosting and Design
Notice: Use of undefined constant site - assumed 'site' in ... on line 58
Notice: Use of undefined constant naam - assumed 'naam' in ... on line 58
Hosting and Design 2
Sport en Recreatie:
Startpagina WK voetbal
Notice: Use of undefined constant site - assumed 'site' in ... on line 58
Notice: Use of undefined constant naam - assumed 'naam' in ... on line 58
Buitensport algemeen
Iemand enig idee waar die foutmeldingen vandaan komen?
Al opgelost :D