0
I have a static site and I am implementing some functions in php in it and one of them is to include a menu on all pages, the same is already created and all files are with it.
What I want is this: replace all this code with: include menu.php
Is there a tool where I can do this? Since the menu code is the same for all files.
Your editor’s search/replace function does not resolve?
– bfavaretto
@bfavaretto I could not find a function that overwrites in all files.
– Lucas César
Try the Sublime Text, he does that.
– bfavaretto
Notepad++ also does this, Brackets does, the command
sed
also, the options are several.– Gustavo Rodrigues
Thanks a lot, I downloaded the sublime here and managed to change, thank you very much!
– Lucas César