[PHP] Truncating text

2003-03-04 Thread Sebastian
Good morning all. I have a mysql query that fetches some text. I am limiting the results to two (2). Then i am limiting the text to 30 characters and truncating it with some Like this: if(strlen($title) = 30) { $title = substr(trim($title),0,30); $title = $title.'..'; } But when a $title

Re: [PHP] Truncating text

2003-03-04 Thread Justin French
Take the truncating out of the picture, and just concentrate on returning two results from mysql. If that works, then try it with rows that contain an exclamation mark (!). If they both work, THEN concentrate on truncating the variable down. Let us know how far you get, so we can pinpoint the