RE: [PHP-DB] Cutting strings

2003-01-26 Thread Peter Lovatt
Hi from the manual http://www.mysql.com/doc/en/String_functions.html LEFT(str,len) Returns the leftmost len characters from the string str: mysql SELECT LEFT('foobarbar', 5); - 'fooba' HTH Peter -Original Message- From: Chezney [mailto:[EMAIL PROTECTED]] Sent: 26

RE: [PHP-DB] Cutting strings

2003-01-26 Thread Michael Uyttersprot
Use the substr function string substr ( string string, int start [, int length] ) http://be.php.net/manual/en/function.substr.php Greetz, Michael -Original Message- From: Chezney [mailto:[EMAIL PROTECTED]] Sent: dimanche 26 janvier 2003 10:08 To: [EMAIL PROTECTED] Subject: [PHP-DB]