Jump to content

Display X Characters


jason97673

Recommended Posts

Hello,

 

I am trying to retrieve data in my PHP page. I can do that successfully, however I would like to retrieve perhaps the first 75 characters of the result set.

 

For example I am making a website that on the front page has the latest news etc. Well right below the latest news I have a <DIV> and it is relatively positioned so I need to make sure the short descriptions of these news excerpts don't end up overlapping my DIV.

 

Should be rather simple as I am sure there is a simple keyword for it somewhere.

 

Any help appreciated.

Link to comment
Share on other sites

Thanks for the replies.

 

I checked out http://us2.php.net/substr

 

But being that I have

$data = mysql_query("SELECT * FROM info where front_page='1'")
or die(mysql_error());//Display Error message

echo '<table id="news_table">';
echo '<tr>';
echo  '<td><b>Latest News and Announcements</b></td>';
echo '</tr>';

while ($info=mysql_fetch_array( $data ))
{
echo '<tr>';
echo  '<td><a href="showarticle.php?article_id=' .$info['article_id'] .'">' .$info['title'] .'</a></td>';
echo '</tr>';
echo '<tr>';
echo  '<td class="text2">Date Published: <b>' .$info['created'] .'</b></td>';
echo '<tr>';
echo  '<td colspan="2">' .$info['short'] .'</td>';
echo '</tr>';
echo '<tr>';
echo  '<td><hr /></td>';
echo '</tr>';
}
echo '</table>';

 

I'm not very sure how substr() would fit into that very well.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.