When you open a .php file in say Dreamweaver you are seeing the code that runs to generate the HTML output which you see when you do view source from the browser.
As PHP runs server side the browser only ever sees the final HTML output and not the PHP code.
Depending on how the application is built you might find that it uses templates allowing you to simply edit those, or it could have snippets of HTML scattered far and wide through the PHP code.
The chances are you will have to learn some PHP.
|