weergeven titels uit database
Nou weet ik hoe ik standaard gegevens uit een database pak en in een loop kan tonen.
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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
// Database connectie
include('_login/dbopen.php');
// SQL query om alles uit tabel news te selecteren
$query = "SELECT * FROM `vacatures` WHERE 1";
// Voer de query uit
$result = mysql_query($query);
while($news = mysql_fetch_array($result)) {
if(!isset($_POST['tekst'])) {
print('
'.$news[titel].'
');
}
}
?>
// Database connectie
include('_login/dbopen.php');
// SQL query om alles uit tabel news te selecteren
$query = "SELECT * FROM `vacatures` WHERE 1";
// Voer de query uit
$result = mysql_query($query);
while($news = mysql_fetch_array($result)) {
if(!isset($_POST['tekst'])) {
print('
'.$news[titel].'
');
}
}
?>
Maar nu wil ik niet alles in een loop tonen omdat de titel op verschillende plekken moet staan en niet standaard is.
Hoe toon ik nu bijvoorbeeld
titel uit record met id 1
ergens verder titel uit record met id 2???
Zal wel heel simpel zijn maar kan het niet vinden...
Anders zou je het ook kunnen ophalen en weergeven waar je het nodig hebt..
Moet ik dan steeds een nieuwe sql query uitvoeren per keer dat ik die titel uit dezelfde tabel wil hebben maar uit een ander record?
Nee niet want je zou het ook in een array kunnen zetten als je het de eerste keer ophaald... en dan verder kan gebruiken...
Hoe zou ik het dan kunnen doen zonder steeds een query te doen ik heb al een array maar dat is per record...
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
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
<?php
// Database connectie
include('_login/dbopen.php');
// SQL query om alles uit tabel news te selecteren
$query = "SELECT * FROM `vacatures` WHERE `id`=1";
// Voer de query uit
$result = mysql_query($query);
while($news1 = mysql_fetch_array($result)) {
print('
'.$news1[titel].'
');
}
</a></td>
<td background="images/post-it.gif" width="126" height="125" align="center"><a href="vacature02.htm?keepThis=true&TB_iframe=true&height=300&width=550" title="Sennasearch Vacature" class="thickbox"><font color=#5f5c5c>
[code]<?php
// Database connectie
include('_login/dbopen.php');
// SQL query om alles uit tabel news te selecteren
$query = "SELECT * FROM `vacatures` WHERE `id`=2";
// Voer de query uit
$result = mysql_query($query);
while($news2 = mysql_fetch_array($result)) {
print('
'.$news2[titel].'
');
}
</a></td>
<td background="images/post-it.gif" width="126" height="125" align="center"><a href="vacature03.htm?keepThis=true&TB_iframe=true&height=300&width=550" title="Sennasearch Vacature" class="thickbox"><font color=#5f5c5c>
[code]<?php
// Database connectie
include('_login/dbopen.php');
// SQL query om alles uit tabel news te selecteren
$query = "SELECT * FROM `vacatures` WHERE `id`=3";
// Voer de query uit
$result = mysql_query($query);
while($news3 = mysql_fetch_array($result)) {
print('
'.$news3[titel].'
');
}
</a></td>
<td background="images/post-it.gif" width="126" height="125" align="center"><a href="vacature04.htm?keepThis=true&TB_iframe=true&height=300&width=550" title="Sennasearch Vacature" class="thickbox"><font color=#5f5c5c>
[code]<?php
// Database connectie
include('_login/dbopen.php');
// SQL query om alles uit tabel news te selecteren
$query = "SELECT * FROM `vacatures` WHERE `id`=4";
// Voer de query uit
$result = mysql_query($query);
while($news4 = mysql_fetch_array($result)) {
print('
'.$news4[titel].'
');
}
</a></td>
</tr>
<tr>
<td background="images/post-it.gif" width="126" height="125" align="center"><a href="vacature05.htm?keepThis=true&TB_iframe=true&height=300&width=550" title="Sennasearch Vacature" class="thickbox"><font color=#5f5c5c>
[code]<?php
// Database connectie
include('_login/dbopen.php');
// SQL query om alles uit tabel news te selecteren
$query = "SELECT * FROM `vacatures` WHERE `id`=5";
// Voer de query uit
$result = mysql_query($query);
while($news5 = mysql_fetch_array($result)) {
print('
'.$news5[titel].'
');
}
</a></td>
<td background="images/post-it.gif" width="126" height="125" align="center"><a href="vacature06.htm?keepThis=true&TB_iframe=true&height=300&width=550" title="Sennasearch Vacature" class="thickbox"><font color=#5f5c5c>
[code]<?php
// Database connectie
include('_login/dbopen.php');
// SQL query om alles uit tabel news te selecteren
$query = "SELECT * FROM `vacatures` WHERE `id`=6";
// Voer de query uit
$result = mysql_query($query);
while($news6 = mysql_fetch_array($result)) {
print('
'.$news6[titel].'
');
}
</a></td>
<td background="images/post-it.gif" width="126" height="125" align="center"><a href="vacature07.htm?keepThis=true&TB_iframe=true&height=300&width=550" title="Sennasearch Vacature" class="thickbox"><font color=#5f5c5c>
[code]<?php
// Database connectie
include('_login/dbopen.php');
// SQL query om alles uit tabel news te selecteren
$query = "SELECT * FROM `vacatures` WHERE `id`=7";
// Voer de query uit
$result = mysql_query($query);
while($news7 = mysql_fetch_array($result)) {
print('
'.$news7[titel].'
');
}
</a></td>
<td background="images/post-it.gif" width="126" height="125" align="center"><a href="vacature08.htm?keepThis=true&TB_iframe=true&height=300&width=550" title="Sennasearch Vacature" class="thickbox"><font color=#5f5c5c>
[code]<?php
// Database connectie
include('_login/dbopen.php');
// SQL query om alles uit tabel news te selecteren
$query = "SELECT * FROM `vacatures` WHERE `id`=8";
// Voer de query uit
$result = mysql_query($query);
while($news8 = mysql_fetch_array($result)) {
print('
'.$news8[titel].'
');
}
?>
// Database connectie
include('_login/dbopen.php');
// SQL query om alles uit tabel news te selecteren
$query = "SELECT * FROM `vacatures` WHERE `id`=1";
// Voer de query uit
$result = mysql_query($query);
while($news1 = mysql_fetch_array($result)) {
print('
'.$news1[titel].'
');
}
</a></td>
<td background="images/post-it.gif" width="126" height="125" align="center"><a href="vacature02.htm?keepThis=true&TB_iframe=true&height=300&width=550" title="Sennasearch Vacature" class="thickbox"><font color=#5f5c5c>
[code]<?php
// Database connectie
include('_login/dbopen.php');
// SQL query om alles uit tabel news te selecteren
$query = "SELECT * FROM `vacatures` WHERE `id`=2";
// Voer de query uit
$result = mysql_query($query);
while($news2 = mysql_fetch_array($result)) {
print('
'.$news2[titel].'
');
}
</a></td>
<td background="images/post-it.gif" width="126" height="125" align="center"><a href="vacature03.htm?keepThis=true&TB_iframe=true&height=300&width=550" title="Sennasearch Vacature" class="thickbox"><font color=#5f5c5c>
[code]<?php
// Database connectie
include('_login/dbopen.php');
// SQL query om alles uit tabel news te selecteren
$query = "SELECT * FROM `vacatures` WHERE `id`=3";
// Voer de query uit
$result = mysql_query($query);
while($news3 = mysql_fetch_array($result)) {
print('
'.$news3[titel].'
');
}
</a></td>
<td background="images/post-it.gif" width="126" height="125" align="center"><a href="vacature04.htm?keepThis=true&TB_iframe=true&height=300&width=550" title="Sennasearch Vacature" class="thickbox"><font color=#5f5c5c>
[code]<?php
// Database connectie
include('_login/dbopen.php');
// SQL query om alles uit tabel news te selecteren
$query = "SELECT * FROM `vacatures` WHERE `id`=4";
// Voer de query uit
$result = mysql_query($query);
while($news4 = mysql_fetch_array($result)) {
print('
'.$news4[titel].'
');
}
</a></td>
</tr>
<tr>
<td background="images/post-it.gif" width="126" height="125" align="center"><a href="vacature05.htm?keepThis=true&TB_iframe=true&height=300&width=550" title="Sennasearch Vacature" class="thickbox"><font color=#5f5c5c>
[code]<?php
// Database connectie
include('_login/dbopen.php');
// SQL query om alles uit tabel news te selecteren
$query = "SELECT * FROM `vacatures` WHERE `id`=5";
// Voer de query uit
$result = mysql_query($query);
while($news5 = mysql_fetch_array($result)) {
print('
'.$news5[titel].'
');
}
</a></td>
<td background="images/post-it.gif" width="126" height="125" align="center"><a href="vacature06.htm?keepThis=true&TB_iframe=true&height=300&width=550" title="Sennasearch Vacature" class="thickbox"><font color=#5f5c5c>
[code]<?php
// Database connectie
include('_login/dbopen.php');
// SQL query om alles uit tabel news te selecteren
$query = "SELECT * FROM `vacatures` WHERE `id`=6";
// Voer de query uit
$result = mysql_query($query);
while($news6 = mysql_fetch_array($result)) {
print('
'.$news6[titel].'
');
}
</a></td>
<td background="images/post-it.gif" width="126" height="125" align="center"><a href="vacature07.htm?keepThis=true&TB_iframe=true&height=300&width=550" title="Sennasearch Vacature" class="thickbox"><font color=#5f5c5c>
[code]<?php
// Database connectie
include('_login/dbopen.php');
// SQL query om alles uit tabel news te selecteren
$query = "SELECT * FROM `vacatures` WHERE `id`=7";
// Voer de query uit
$result = mysql_query($query);
while($news7 = mysql_fetch_array($result)) {
print('
'.$news7[titel].'
');
}
</a></td>
<td background="images/post-it.gif" width="126" height="125" align="center"><a href="vacature08.htm?keepThis=true&TB_iframe=true&height=300&width=550" title="Sennasearch Vacature" class="thickbox"><font color=#5f5c5c>
[code]<?php
// Database connectie
include('_login/dbopen.php');
// SQL query om alles uit tabel news te selecteren
$query = "SELECT * FROM `vacatures` WHERE `id`=8";
// Voer de query uit
$result = mysql_query($query);
while($news8 = mysql_fetch_array($result)) {
print('
'.$news8[titel].'
');
}
?>
Gewijzigd op 01/01/1970 01:00:00 door arne