Hi
i have hundreds of pages on my website which use internal styles sheet for each page. But now i want to remove internal styles and will put just a single external style sheet as internal style sheet are taking more bandwidth.
Can any body help me how i can remove everything between <style>....</style> inside my all html pages.
i have done so far is
filename = $file;
//reading file contents
$handle = fopen($filename, "r+");
$contents = fread($handle, filesize($filename));
fclose($handle);
dont know what to do further .....
waiting for someone help.
thanx