Demonic Posted September 21, 2006 Share Posted September 21, 2006 Like a portal it grabs a certain ammount of text from database. Link to comment https://forums.phpfreaks.com/topic/21601-how-can-you-grab-a-certain-ammount-of-characters-from-a-table/ Share on other sites More sharing options...
btherl Posted September 22, 2006 Share Posted September 22, 2006 Assuming you are using mysql:[code]SELECT SUBSTRING(column FROM 1 FOR 50) FROM table[/code]That'll select the first 50 characters from column in table. Link to comment https://forums.phpfreaks.com/topic/21601-how-can-you-grab-a-certain-ammount-of-characters-from-a-table/#findComment-96475 Share on other sites More sharing options...
Demonic Posted September 22, 2006 Author Share Posted September 22, 2006 Thanks. Link to comment https://forums.phpfreaks.com/topic/21601-how-can-you-grab-a-certain-ammount-of-characters-from-a-table/#findComment-96620 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.