True thatdreamweaver is free. download the trial and use a serial # from usenet.
yeh I know what you meanI have maybe 20-30 php files that have many image files names like "images/whatever.gif" I want to replace that with "/images/whatever.gif" without having to go in and change each one manually.. simply because there are hundreds.
for /f %i in ('dir /b *.php') do sed -e "s/oldvalue/newvalue/" %i > .\new\%i.php"
Well, I have a bunch of files that I want to find and replace stuff in:
I have maybe 20-30 php files that have many image files names like "images/whatever.gif" I want to replace that with "/images/whatever.gif" without having to go in and change each one manually.. simply because there are hundreds.