Posted by Michael Fesser on 06/21/07 15:01
..oO(monomaniac21) >how can i take a string and delete everything up to and including the >first occurrence of a forward slash (/)? please help. Try $text = preg_replace('#^.*?/#', '', $text); You could also do it with strpos() and substr_replace(). Micha
[Back to original message]
Copyright © 2005-2006 Powered by Custom PHP Programming