HTML interesse |
|
Onderstaand script geeft foutloos een resultaat in de vorm van "T..." en "E..."
<?php
function strip($text){
if (strlen($text) > 15){
print substr(stripslashes($text), 0,15). "...";
}else{
print stripslashes($text);
}
}
strip($text);
while (list($id, $titel) = mysql_fetch_row($bla)){
echo "<a href=\"". $_SERVER["PHP_SELF"] . "?id=$id" . "\">", strip($titel["titel"]), "...</a><br>";
}?>
<?php function strip($text){ }else{ } } strip($text); echo "<a href=\"". $_SERVER["PHP_SELF"] . "?id=$id" . "\">", strip ($titel["titel"]), "...</a><br>"; }?>
Alleen het eerste teken wordt getoond, gevolgd door drie puntjes. Wat en hoe moet ik dit script aanpassen zodat de eerste 15 tekens worden getoond?
|