link naar id?
bernard
16/10/2006 21:06:00hi, ik heb dit gebouwd:
zoals je ziet wil ik doormiddel van de link het hele content in mijn pagina script te zien krijgen.. ik heb geen idee of dit zo moet werken maar heb geen ervaring met die links. kan iemand mij iets uitleggen? bedankt, bernard
oja en ?p=software_nieuws is dezelfde pagina als dit script
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
include ('functions/functions.php');
connect('localhost', 'root', '');
$sql = "SELECT * FROM software ORDER BY softwareID DESC LIMIT 0,1";
$ophalen = mysql_query($sql);
while ($res = mysql_fetch_assoc($ophalen)) {
echo $res['thumb'];
echo '<span style="font-weight: bold; font-family: Arial, Helvetica, sans-serif; color: #bd0606; font-size: 12px">
'.$res['titel'].'</span><br /><br />';
$lengte = strlen($res['bericht']);
if ($lengte > 200) {
echo substr($res['bericht'], 0, 200) ."...";
} else {
echo $res['bericht']."<br /><br />";
echo '<a href="?p=software_nieuws&id=1">lees meer</a>';
}
}
?>
include ('functions/functions.php');
connect('localhost', 'root', '');
$sql = "SELECT * FROM software ORDER BY softwareID DESC LIMIT 0,1";
$ophalen = mysql_query($sql);
while ($res = mysql_fetch_assoc($ophalen)) {
echo $res['thumb'];
echo '<span style="font-weight: bold; font-family: Arial, Helvetica, sans-serif; color: #bd0606; font-size: 12px">
'.$res['titel'].'</span><br /><br />';
$lengte = strlen($res['bericht']);
if ($lengte > 200) {
echo substr($res['bericht'], 0, 200) ."...";
} else {
echo $res['bericht']."<br /><br />";
echo '<a href="?p=software_nieuws&id=1">lees meer</a>';
}
}
?>
zoals je ziet wil ik doormiddel van de link het hele content in mijn pagina script te zien krijgen.. ik heb geen idee of dit zo moet werken maar heb geen ervaring met die links. kan iemand mij iets uitleggen? bedankt, bernard
oja en ?p=software_nieuws is dezelfde pagina als dit script
Gewijzigd op 01/01/1970 01:00:00 door Bernard
Er zijn nog geen reacties op dit bericht.