Salve, sto leggendo questo tutorial:
http://programming-in-php.blogspot.it/2009/10/function-to-show-read-more-link-in-php.html
ora chiedo è possibile farlo con un bbcode che posso decidere io ti far visualizzare un tot di lettere e far vedere i link "leggi tutto", avendo solo il
campo nel database "news" in formato longtext.?
come posso fare che io posso decidere di far vedere "leggi tutto" o viceversa"?.
grazie mille.
Ecco il codice chi non vuole andare nel sito citato.
utils.php
example.php
http://programming-in-php.blogspot.it/2009/10/function-to-show-read-more-link-in-php.html
ora chiedo è possibile farlo con un bbcode che posso decidere io ti far visualizzare un tot di lettere e far vedere i link "leggi tutto", avendo solo il
campo nel database "news" in formato longtext.?
come posso fare che io posso decidere di far vedere "leggi tutto" o viceversa"?.
grazie mille.
Ecco il codice chi non vuole andare nel sito citato.
utils.php
PHP:
<?php
//function to truncate text and show read more link
function truncate($mytext,$link,$var,$id) {
//Number of characters to show
$chars = 25;
$mytext = substr($mytext,0,$chars);
$mytext = substr($mytext,0,strrpos($mytext,' '));
$mytext = $mytext." <a href='$link?$var=$id'>read more...</a>";
return $mytext;
}
?>
PHP:
<?php
include "connect.php";
$sql = "SELECT * FROM articles";
$result = mysql_query($sql);
while($row = mysql_fetch_array($result))
{
echo "\n";
echo truncate($row['article_text'],"article.php","article_id",$row['article_id']);
}
//function to truncate text and show read more link
function truncate($mytext,$link,$var,$id) {
//Number of characters to show
$chars = 25;
$mytext = substr($mytext,0,$chars);
$mytext = substr($mytext,0,strrpos($mytext,' '));
$mytext = $mytext." <a href='$link?$var=$id'>read more...</a>";
return $mytext;
}
?>