Hi everyone,
This is might be more of a MySQL type of question, I hope that's ok.
I am using the following sql query:
SELECT upc, artist_name, album_title, description, image FROM lounge_products
WHERE upc = $feat_sel
The description is saved as text in MySQL and has a max of 1000 characters. When I pull this from the database using PHP, I would only like to retrieve the first 250 characters.
Does anyone have any thoughts that could point me in the right direction? Thanks!