vote up 0 vote down star

I am grabbing info from three rows in my table, and echoing one of them in a anchor tag.

How can I limit the amount of characters on the $title variable that are shown in the anchor tag.

Code:

$results = mysql_query("SELECT * FROM news ");

while($row = mysql_fetch_array($results)) { 
    $id = $row['id'];
    $title = $row['title'];
    $date = $row['date'];

    echo "<a href=\"" . $_SERVER['PHP_SELF']."?id=$id"."\">$title</a> | ";
}

$thisID = $_GET['id'];

if(!isset($thisID)) {
    $thisID = 7;
}
flag

67% accept rate
3  
Heads up, it is invalid to start an ID attribute with a number character. You should make it $id= "link".$row["id"] or some such, or it will cause issues with some scripts/browsers. – Anthony Oct 11 at 2:22
I prefer to use javascript to truncate my strings, based on the width of the parent element. – rpflo Oct 11 at 2:48

3 Answers

vote up 4 vote down

You can use substr:

echo "<a href=\"" . $_SERVER['PHP_SELF'] . "?id=$id" . "\">" . substr($title, 0, LENGTH) . "</a> | ";

Replace LENGTH with the length in characters to which you want to trim $title.

link|flag
+1 beat me to it. – klabranche Oct 11 at 2:09
vote up 2 vote down

You can use LEFT in the query to return the leftmost set of characters from a column.

It's in the format of LEFT(column, max_chars)

define('MAXCHARS', '50');

$results = mysql_query("SELECT id, LEFT(title, ".MAXCHARS.") as truncated_title, 
                           date FROM news");

Now when you go to retrieve the column, aliased by truncated_title in this example, it will only contain at most however many characters as set in your MAXCHARS constant.

link|flag
vote up 0 vote down

You could replace the first part of the string, or the last part, but if you do it would be better to provide an indication that something has been left out, by appending or prepending an ellipsis ...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.