I want to show snippets of 2 posts on the homepage. Here is the code I have:
function getPostsHome() {
$query = mysql_query("SELECT * FROM posts LIMIT 0,2") or die(mysql_error());
while($post = mysql_fetch_assoc($query)) {
echo "<h3>" . $post['Title'] . "</h3>";
echo "<p>" . $post['Content'] . "</p><br /><br />";
}
}
How do I truncate the Title to 25 characters, then '...', and the content to 100 characters, then '...'?
Thank you.