Nov 13, 2005 #1 jnxx Programmer May 18, 2005 14 GB I'm writing a cms where i just want to retrieve a few lines of words from a article posted in a mysql table, sort of like a teaser. Does any one know how this can be done? OR perhaps point me in the right direction? Thanks
I'm writing a cms where i just want to retrieve a few lines of words from a article posted in a mysql table, sort of like a teaser. Does any one know how this can be done? OR perhaps point me in the right direction? Thanks
Nov 13, 2005 #2 KarveR MIS Dec 14, 1999 2,065 GB something like: select substring(your_field,0,300) will return the first 300 characters of the given field. ______________________________________________________________________ There's no present like the time, they say. - Henry's Cat. Upvote 0 Downvote
something like: select substring(your_field,0,300) will return the first 300 characters of the given field. ______________________________________________________________________ There's no present like the time, they say. - Henry's Cat.