Lid |
|
Hallo,
Ik heb volgende inkortingsysteem :
<?php echo short(stripslashes($data['bericht']), 800, ' <a href="index.php?mod=nieuws&a=toon&id="><strong>Lees Meer...</strong></a> '); ?>
<?php echo short (stripslashes($data['bericht']), 800, ' <a href="index.php?mod=nieuws&a=toon&id="><strong>Lees Meer...</strong></a> '); ?>
Met natuurlijk de functie die erbij wordt geladen maar ik zou graag mijn id ook in die functie krijgen maar daarop geeft hij steeds een error als ik doe
<?php echo short(stripslashes($data['bericht']), 800, ' <a href="index.php?mod=nieuws&a=toon&id=<?php echo $data['ID']; ?>"><strong>Lees Meer...</strong></a> '); ?>
<?php echo short (stripslashes($data['bericht']), 800, ' <a href="index.php?mod=nieuws&a=toon&id=<?php echo $data['ID ']; ?>"><strong>Lees Meer...</strong></a> '); ?>
|