What program can I use to edit a PHP website?
We’ve got a website that was designed for us but in PHP format I need to edit it but don’t know what software to use?
We’ve got a website that was designed for us but in PHP format I need to edit it but don’t know what software to use?
Try Notepad++ (on MS-Windows). It’s free and does syntax highlighting, folding, etc.
More generally, if you want to edit files remotely, you can use winscp (also free). It’ll let you FTP/SCP/etc to the web site. When you double-click on a file,it’ll download the file and start an editor to work on it locally (notepad by default, but can be configured). When you’re done editing (& save the file), it’ll automatically upload the changed file.
you can use any text editor such as notepad or wordpad
if you want something advanced you can try dzsoft php editor
There’s a lot of Editors specially made for PHP code.
Take a look here:
http://www.php-editors.com/
PHP files are just text files, so you can edit them with any text editor.
However, PHP is a programming language that is used to create dynamic (i.e. changing) web pages. If you don’t know how to program in PHP (and given your question, I’m guessing you don’t), you may find it difficult to know what to edit to get the changes you want.
It also depends on what changes you want to make. Depending on how the site has been laid out, visual changes (text colour and size, images, text placement) might be changed by editing CSS (Cascading Style Sheet) files (also text files).
Your previous web designer may also have given you the means to add content etc., but you’d have to check with that person.
If you’re not proficient in Web design, you’re best off getting a professional in – either the person who designed it in the first place or someone else. You can learn PHP, CSS, and HTML (the bare minimum you’ll need) from the Web, but that may take longer than you need right now. (But do search for "HTML tutorial", "PHP tutoral" and "CSS tutorial").