MySql query probleem
Daar doe je in feite dit:
if(!$Result = mysql_query($Query))
En bij de 'oude' doe je dit:
if(!$Result = mysql_query(mysql_query($Query)))
Dus dan zou dit correct moeten werken:
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
<?php
session_start();
// Database connectie maken
include('config.php');
// Sessie aanmaken herhalen
$_SESSION['login'] = $_SESSION['login'];
// Functies includen
include('Functies.php');
// Stylesheet koppelen
echo '<link href="CSS/Forum.css" rel="stylesheet" type="text/css">';
// Alles uit database halen
$sql1 = ("
SELECT
*,
*
FROM
topic AS a
INNER JOIN
posts AS b
ON
(b.topic_id = a.id)
WHERE
a.sub_id = '".intval($_GET['sub_id'])."'
ORDER BY
b.datum
DESC
");
$res1 = mysql_query($sql1);
// Aantal per pagina en aangeven hoeveel paginas er zijn
$per_pag = 15;
$aant_pag = ceil(mysql_num_rows($res1) / $per_pag);
// Huidige pagina een waarde geven
if(isset($_GET['nr']))
{
$pagina = $_GET['nr'];
}
else
{
$pagina = 0;
}
// Bepalen vanaf welk rec we uit de db meoten halen
$van = $pagina * $per_pag;
// Gegevens van de huidige pagina uit de database halen
$sql2 = ("
SELECT
*,
*
FROM
topic AS a
INNER JOIN
posts AS b
ON
(b.topic_id = a.id)
WHERE
a.sub_id = '".intval($_GET['sub_id'])."'
ORDER BY
b.datum
DESC
LIMIT
$van, $per_pag
");
$res2 = mysql_query($sql2);
echo '<div class="Forum">';
// Alle pagina nummers echoën
if($aant_pag > 1)
{
echo '<div class="navigatie">';
if($pagina > 0)
{
echo '<a class="nav" href="?sub_id='.$_GET['sub_id'].'&nr='.($pagina - 1).'">Prev</a> ';
}
for($nmr = 0; $nmr < $aant_pag; $nmr++)
{
if($_GET['nr'] == $nmr)
{
echo '<b>'.($nmr + 1).'</b>';
}
else
{
echo '<a class="nav" href="?sub_id='.$_GET['sub_id'].'&nr='.$nmr.'">'.($nmr + 1).'</a>';
}
if($nmr < $aant_pag - 1)
{
echo ", ";
}
}
if($aant_pag > $pagina + 1)
{
echo ' <a class="nav" href="?sub_id='.$_GET['sub_id'].'&nr='.($pagina + 1).'">Next</a>';
}
echo '</div>';
}
// Hoofdcategorie titel echoën
echo '<p class="titel-balk">Huiswerk</p>';
// Hoe wie wat waar balk.
echo '<div class="top-info-balk">';
echo '<p class="top-info-klein"></p>';
echo '<p class="top-info-groot">Topic</p>';
echo '<p class="top-info-klein">Replies</p>';
echo '<p class="top-info-middel1">Author</p>';
echo '<p class="top-info-klein">Views</p>';
echo '<p class="top-info-middel2">Last post</p>';
echo '</div>';
// Kijken of 1e 2 query's gelukt zijn.
if(!$res1 or !$res2)
{
if(mysql_num_rows($res1) > 0)
{
// De gegevens echoën
while($rec2 = mysql_fetch_array($res2))
{
// Aantal posts ophalen
$cnt = mysql_query("SELECT * FROM posts WHERE topic_id = '".$rec2['id']."'");
// Last post ophalen
$sql3 = mysql_query("SELECT * FROM posts WHERE topic_id = '".$rec2['id']."' ORDER BY id DESC LIMIT 1");
$rec3 = mysql_fetch_array($sql3);
// Alles weergeven
echo '<div class="top-frm-balk">';
/*
TopStatus
[ 0 ] => Gewoon
[ 1 ] => Op slot
[ 2 ] => Sticky (Toekomstig)
[ 3 ] => Verhuisd
*/
echo '<p class="top-frm-klein">';
if($_SESSION['login'] == $rec3['poster_id'])
{
if($rec2['status'] == '2')
{
echo '<img style="margin-top: 6.5px;" src="CSS/IMAGES/TopStatus4.gif">';
}
elseif($rec2['status'] == '1')
{
echo '<img style="margin-top: 6.5px;" src="CSS/IMAGES/TopStatus3.gif">';
}
elseif($rec2['status'] == '3')
{
echo '<img style="margin-top: 6.5px;" src="CSS/IMAGES/TopStatus5.gif">';
}
elseif($rec2['status'] == '0')
{
echo '<img style="margin-top: 6.5px;" src="CSS/IMAGES/TopStatus2.gif">';
}
}
else
{
if($rec2['status'] == '2')
{
echo '<img style="margin-top: 6.5px;" src="CSS/IMAGES/TopStatus4.gif">';
}
elseif($rec2['status'] == '1')
{
echo '<img style="margin-top: 6.5px;" src="CSS/IMAGES/TopStatus3.gif">';
}
elseif($rec2['status'] == '3')
{
echo '<img style="margin-top: 6.5px;" src="CSS/IMAGES/TopStatus5.gif">';
}
elseif($rec2['status'] == '0')
{
echo '<img style="margin-top: 6.5px;" src="CSS/IMAGES/TopStatus1.gif">';
}
}
echo '</p>';
echo '<p class="top-frm-groot">';
echo '<a class="toptitel" href="Showtopic.php?sub_id='.$_GET['sub_id'].'&topic_id='.$rec2['id'].'">'.$rec2['titel'].'</a><br>';
echo '</p>';
echo '<p class="top-frm-klein">'.mysql_num_rows($cnt).'</p>';
echo '<p class="top-frm-middel1">'.gebruikersnaam($rec2['poster_id']).'</p>';
echo '<p class="top-frm-klein">'.$rec2['views'].'</p>';
echo '<p class="top-frm-middel2">'.gebruikersnaam($rec3['poster_id']).'<br>'.$rec3['datum'].'</p>';
echo '</div>';
}
}
else
{
echo '<p class="error">Helaas, er zijn nog geen topics in deze categorie</p>';
}
}
else
{
echo '<p class="error">Helaas, er is een fout opgetreden bij een van de query´s</p>';
echo '<br>Query 1:<br>';
echo mysql_error($sql1);
echo '<br>Query 2:<br>';
echo mysql_error($sql2);
}
// Alle pagina nummers echoën
if($aant_pag > 1)
{
echo '<div class="navigatie">';
if($pagina > 0)
{
echo '<a class="nav" href="?sub_id='.$_GET['sub_id'].'&nr='.($pagina - 1).'">Prev</a> ';
}
for($nmr = 0; $nmr < $aant_pag; $nmr++)
{
if($_GET['nr'] == $nmr)
{
echo '<b>'.($nmr + 1).'</b>';
}
else
{
echo '<a class="nav" href="?sub_id='.$_GET['sub_id'].'&nr='.$nmr.'">'.($nmr + 1).'</a>';
}
if($nmr < $aant_pag - 1) {
echo ", ";
}
}
if($aant_pag > $pagina + 1)
{
echo ' <a class="nav" href="?sub_id='.$_GET['sub_id'].'&nr='.($pagina + 1).'">Next</a>';
}
echo '</div>';
}
if(isset($_SESSION['login']))
{
echo '</div><br>';
echo '<a href="Addtopic.php?sub_id='.$_GET['sub_id'].'"><img src="CSS/IMAGES/Addtopic.png" border="0"></a>';
}
else
{
echo '<p class="error">Uw moet inloggen voor u een topic kunt aanmaken.</p>';
echo '</div>';
}
?>
session_start();
// Database connectie maken
include('config.php');
// Sessie aanmaken herhalen
$_SESSION['login'] = $_SESSION['login'];
// Functies includen
include('Functies.php');
// Stylesheet koppelen
echo '<link href="CSS/Forum.css" rel="stylesheet" type="text/css">';
// Alles uit database halen
$sql1 = ("
SELECT
*,
*
FROM
topic AS a
INNER JOIN
posts AS b
ON
(b.topic_id = a.id)
WHERE
a.sub_id = '".intval($_GET['sub_id'])."'
ORDER BY
b.datum
DESC
");
$res1 = mysql_query($sql1);
// Aantal per pagina en aangeven hoeveel paginas er zijn
$per_pag = 15;
$aant_pag = ceil(mysql_num_rows($res1) / $per_pag);
// Huidige pagina een waarde geven
if(isset($_GET['nr']))
{
$pagina = $_GET['nr'];
}
else
{
$pagina = 0;
}
// Bepalen vanaf welk rec we uit de db meoten halen
$van = $pagina * $per_pag;
// Gegevens van de huidige pagina uit de database halen
$sql2 = ("
SELECT
*,
*
FROM
topic AS a
INNER JOIN
posts AS b
ON
(b.topic_id = a.id)
WHERE
a.sub_id = '".intval($_GET['sub_id'])."'
ORDER BY
b.datum
DESC
LIMIT
$van, $per_pag
");
$res2 = mysql_query($sql2);
echo '<div class="Forum">';
// Alle pagina nummers echoën
if($aant_pag > 1)
{
echo '<div class="navigatie">';
if($pagina > 0)
{
echo '<a class="nav" href="?sub_id='.$_GET['sub_id'].'&nr='.($pagina - 1).'">Prev</a> ';
}
for($nmr = 0; $nmr < $aant_pag; $nmr++)
{
if($_GET['nr'] == $nmr)
{
echo '<b>'.($nmr + 1).'</b>';
}
else
{
echo '<a class="nav" href="?sub_id='.$_GET['sub_id'].'&nr='.$nmr.'">'.($nmr + 1).'</a>';
}
if($nmr < $aant_pag - 1)
{
echo ", ";
}
}
if($aant_pag > $pagina + 1)
{
echo ' <a class="nav" href="?sub_id='.$_GET['sub_id'].'&nr='.($pagina + 1).'">Next</a>';
}
echo '</div>';
}
// Hoofdcategorie titel echoën
echo '<p class="titel-balk">Huiswerk</p>';
// Hoe wie wat waar balk.
echo '<div class="top-info-balk">';
echo '<p class="top-info-klein"></p>';
echo '<p class="top-info-groot">Topic</p>';
echo '<p class="top-info-klein">Replies</p>';
echo '<p class="top-info-middel1">Author</p>';
echo '<p class="top-info-klein">Views</p>';
echo '<p class="top-info-middel2">Last post</p>';
echo '</div>';
// Kijken of 1e 2 query's gelukt zijn.
if(!$res1 or !$res2)
{
if(mysql_num_rows($res1) > 0)
{
// De gegevens echoën
while($rec2 = mysql_fetch_array($res2))
{
// Aantal posts ophalen
$cnt = mysql_query("SELECT * FROM posts WHERE topic_id = '".$rec2['id']."'");
// Last post ophalen
$sql3 = mysql_query("SELECT * FROM posts WHERE topic_id = '".$rec2['id']."' ORDER BY id DESC LIMIT 1");
$rec3 = mysql_fetch_array($sql3);
// Alles weergeven
echo '<div class="top-frm-balk">';
/*
TopStatus
[ 0 ] => Gewoon
[ 1 ] => Op slot
[ 2 ] => Sticky (Toekomstig)
[ 3 ] => Verhuisd
*/
echo '<p class="top-frm-klein">';
if($_SESSION['login'] == $rec3['poster_id'])
{
if($rec2['status'] == '2')
{
echo '<img style="margin-top: 6.5px;" src="CSS/IMAGES/TopStatus4.gif">';
}
elseif($rec2['status'] == '1')
{
echo '<img style="margin-top: 6.5px;" src="CSS/IMAGES/TopStatus3.gif">';
}
elseif($rec2['status'] == '3')
{
echo '<img style="margin-top: 6.5px;" src="CSS/IMAGES/TopStatus5.gif">';
}
elseif($rec2['status'] == '0')
{
echo '<img style="margin-top: 6.5px;" src="CSS/IMAGES/TopStatus2.gif">';
}
}
else
{
if($rec2['status'] == '2')
{
echo '<img style="margin-top: 6.5px;" src="CSS/IMAGES/TopStatus4.gif">';
}
elseif($rec2['status'] == '1')
{
echo '<img style="margin-top: 6.5px;" src="CSS/IMAGES/TopStatus3.gif">';
}
elseif($rec2['status'] == '3')
{
echo '<img style="margin-top: 6.5px;" src="CSS/IMAGES/TopStatus5.gif">';
}
elseif($rec2['status'] == '0')
{
echo '<img style="margin-top: 6.5px;" src="CSS/IMAGES/TopStatus1.gif">';
}
}
echo '</p>';
echo '<p class="top-frm-groot">';
echo '<a class="toptitel" href="Showtopic.php?sub_id='.$_GET['sub_id'].'&topic_id='.$rec2['id'].'">'.$rec2['titel'].'</a><br>';
echo '</p>';
echo '<p class="top-frm-klein">'.mysql_num_rows($cnt).'</p>';
echo '<p class="top-frm-middel1">'.gebruikersnaam($rec2['poster_id']).'</p>';
echo '<p class="top-frm-klein">'.$rec2['views'].'</p>';
echo '<p class="top-frm-middel2">'.gebruikersnaam($rec3['poster_id']).'<br>'.$rec3['datum'].'</p>';
echo '</div>';
}
}
else
{
echo '<p class="error">Helaas, er zijn nog geen topics in deze categorie</p>';
}
}
else
{
echo '<p class="error">Helaas, er is een fout opgetreden bij een van de query´s</p>';
echo '<br>Query 1:<br>';
echo mysql_error($sql1);
echo '<br>Query 2:<br>';
echo mysql_error($sql2);
}
// Alle pagina nummers echoën
if($aant_pag > 1)
{
echo '<div class="navigatie">';
if($pagina > 0)
{
echo '<a class="nav" href="?sub_id='.$_GET['sub_id'].'&nr='.($pagina - 1).'">Prev</a> ';
}
for($nmr = 0; $nmr < $aant_pag; $nmr++)
{
if($_GET['nr'] == $nmr)
{
echo '<b>'.($nmr + 1).'</b>';
}
else
{
echo '<a class="nav" href="?sub_id='.$_GET['sub_id'].'&nr='.$nmr.'">'.($nmr + 1).'</a>';
}
if($nmr < $aant_pag - 1) {
echo ", ";
}
}
if($aant_pag > $pagina + 1)
{
echo ' <a class="nav" href="?sub_id='.$_GET['sub_id'].'&nr='.($pagina + 1).'">Next</a>';
}
echo '</div>';
}
if(isset($_SESSION['login']))
{
echo '</div><br>';
echo '<a href="Addtopic.php?sub_id='.$_GET['sub_id'].'"><img src="CSS/IMAGES/Addtopic.png" border="0"></a>';
}
else
{
echo '<p class="error">Uw moet inloggen voor u een topic kunt aanmaken.</p>';
echo '</div>';
}
?>
Ziet er een stuk beter uit.
Ben nu in ieder geval al me scripts van het forum aan het her schrijven...
Als dat allemaal gedaan is kom ik weer terug met een error, denk ik :P
Gr,
Géén error is veel lastiger. ;-)
Ik heb een error hoor:
2 zelfs :P
Code (php)
1
2
3
4
5
6
7
2
3
4
5
6
7
Query 1:
Warning: mysql_error(): supplied argument is not a valid MySQL-Link resource in /customers/after-party.nl/after-party.nl/httpd.www/Forum/Topiclist.php on line 170
Query 2:
Warning: mysql_error(): supplied argument is not a valid MySQL-Link resource in /customers/after-party.nl/after-party.nl/httpd.www/Forum/Topiclist.php on line 173
Warning: mysql_error(): supplied argument is not a valid MySQL-Link resource in /customers/after-party.nl/after-party.nl/httpd.www/Forum/Topiclist.php on line 170
Query 2:
Warning: mysql_error(): supplied argument is not a valid MySQL-Link resource in /customers/after-party.nl/after-party.nl/httpd.www/Forum/Topiclist.php on line 173
Edit: Waarschijnlijk deze regel (en de volgende op 3 regels verder)
echo mysql_error($sql1);
Moet zijn:
echo mysql_error($res1);
Edit2: Nutteloze regel:
$_SESSION['login'] = $_SESSION['login'];
Gewijzigd op 01/01/1970 01:00:00 door - SanThe -
deze regels zijn het indd:
Code (php)
1
2
3
4
5
6
2
3
4
5
6
echo '<p class="error">Helaas, er is een fout opgetreden bij een van de querys</p>';
echo '<br>Query 1:<br>';
echo mysql_error($res1);
echo '<br>Query 2:<br>';
echo mysql_error($res2);
echo '<br>Query 1:<br>';
echo mysql_error($res1);
echo '<br>Query 2:<br>';
echo mysql_error($res2);
en die hebben het over:
QUERY 1
Code (php)
1
2
2
$sql1 = "SELECT *, * FROM topic AS a INNER JOIN posts AS b ON (b.topic_id = a.id) WHERE a.sub_id = '".intval($_GET['sub_id'])."' ORDER BY b.datum DESC";
$res1 = mysql_query($sql1);
$res1 = mysql_query($sql1);
QUERY 2
Dus zo?
echo mysql_error();
SELECT *, * FTOM
Waarom 2 keer een *?
Edit: Van php.net gehaald, dat werkt dus alleen met de link van de connection en niet met de query.
Code (php)
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
<?php
$link = mysql_connect("localhost", "mysql_user", "mysql_password");
mysql_select_db("nonexistentdb", $link);
echo mysql_errno($link) . ": " . mysql_error($link). "\n";
mysql_select_db("kossu", $link);
mysql_query("SELECT * FROM nonexistenttable", $link);
echo mysql_errno($link) . ": " . mysql_error($link) . "\n";
?>
$link = mysql_connect("localhost", "mysql_user", "mysql_password");
mysql_select_db("nonexistentdb", $link);
echo mysql_errno($link) . ": " . mysql_error($link). "\n";
mysql_select_db("kossu", $link);
mysql_query("SELECT * FROM nonexistenttable", $link);
echo mysql_errno($link) . ": " . mysql_error($link) . "\n";
?>
Gewijzigd op 01/01/1970 01:00:00 door - SanThe -
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
SELECT
a.veld1,
a.veld2,
b.veld1,
b.veld2
FROM
tabel1 AS a
INNER JOIN
tabel2 AS b
ON
b.ID = a.ID
WHERE
a.sub_id = '".intval($_GET['sub_id'])."'
ORDER BY
b.datum
DESC
a.veld1,
a.veld2,
b.veld1,
b.veld2
FROM
tabel1 AS a
INNER JOIN
tabel2 AS b
ON
b.ID = a.ID
WHERE
a.sub_id = '".intval($_GET['sub_id'])."'
ORDER BY
b.datum
DESC
en toen moest ik de .a en .b weghalen bij de select:
Je zal je script anders moeten indelen om de errors op te vangen. Zie mijn edit vorige post.
Dus hoe het nu zit kan het zoiezo niet, daar komt het op neer...
ik ga een andere indeling maken en dan zie je vanzelf dit topic weer veschijnen :P
Gr,
Okee, succes.