shalli Posted August 24, 2010 Share Posted August 24, 2010 Hi there Been trying to figure this out but how do you limit charachters on a mysql query <?php //$qry="select * from news where status=1 order by date_Added DESC"; $qry="select * from wp_posts order by post_date DESC"; $sql=mysql_query($qry,$connBlog); //$news=mysql_fetch_array(); while($news=mysql_fetch_array($sql)){ $arr[]=$news['post_title', 0, 25];?> js_ar.push("<?=$news['post_title']?>"); <?php }?> thanks shalli Quote Link to comment Share on other sites More sharing options...
mikosiko Posted August 24, 2010 Share Posted August 24, 2010 2 possible options: a) use the SUBSTRING() function directly in your sql query b) use the SUBSTR() function in PHP Quote Link to comment Share on other sites More sharing options...
shalli Posted December 31, 2010 Author Share Posted December 31, 2010 Thanks mikosiko For all your help!! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.