After using file_get_contents to write to a html file, I need to delete certain parts of this files contents because the paths to css and images has changed.
So I have lines as below :
<link href="/Elements/css/main.css" rel="stylesheet" type="text/css">
<image src="/Elements/images/image1.gif" />
I would like to remove the: '/Elements/' part of these two lines, and others so I will have the correct paths.
thanks
R