answersLogoWhite

0

A few methods here.

Firstly, if you have a cPanel or if the Control Panel of your provider has a file directory system you should be able to edit PHP straight in the browser. cPanel offers this with even syntax highlighting.

Secondly, Notepad and FTP. Make an FTP account (or use an existing one) and download the files and then upload to new PHP files. You can download an FTP client free such as Core FTP.

Thirdly, FTP online. Using such websites as online-php.com you can connect via FTP to your server and edit PHP files. It's a very nice program (even syntax highlights although this can make it slow to use) especially if you do not have the permissions to install an application version of FTP or if it's a shared computer.

Last and my favorite method, Dreamweaver CS5 (unsure if CS4 has it). You can connect to your server via FTP. Connect it and sync the files on the server to a folder on your computer. Dreamweaver offers a layout designer, Tag suggest menu (when you type a letter it finds tags quicker -like something you would find in visual studios) and full coding support.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

How do you edit a PHP file?

Open it in Notepad. Add or remove whatever code you want. To test, you will have to upload it to a PHP enabled webhost, or you will need to install MySQL, PHP, and Apache on your computer. Use Editor to edit the PHP file. Example: Notepad++ , editplus ,Zend IDE ,Netbeans IDE


How do you create a DIV type file using PHP?

A file with the DIV file extension is a DivX Movie file, it cannot be created with PHP. PHP is a web programming language for web site building.


Is php a binary file?

No, PHP is text file with .php extension.


I have a HTML website I want to use a php script I have but the main php file has the info in it and I want it to be on the HTML site how can I embed or use the php code without using frames?

change the extention of the .HTML file to .php and then open the file that was previously HTML and put <?php include ("path/to/second/php/file.php"); ?> so for example if i have page1.HTML and page2.php i rename page1.HTML to page1.php and then put <?php include ("page2.php"); ?> where i want page2 to appear. Note: Any HTML file can be renamed to have a .php extention even if it doesnt contain any PHP.


Can you open php file in your PC?

Since a PHP file basically is a text file, yes. But beware - opening and running a PHP file are not the same. If you want to run a PHP file, you will need a webserver with PHP module enabled.


What file extension is used to save a php file after code has been written into it?

The file extension for PHP is .php


What program is required to open a PHP file?

The first thing you would need to open up and run a PHP file would be to have a web server with PHP installed on your local development site like XAMPP, WAMP, or MAMP. Alternatively, you could open a PHP file in any text editor, like VS Code or Sublime Text, to view or edit the code, but to run the file, it needs to be executed from a server that has PHP support. To know more..connectinfosoft


How can I know what PHP version my site is running on?

Set up a PHP file and put the following in it. <?php phpinfo(); ?> Then run it on the server, it will have all the information you will need including what version you are running.


What is the Malay-utf-8.inc. php file?

This particular file is a file specific to the PHP program or script you are using. It is not a "php system file".


What is the file extension .php?

A file whose extension is "*.php" are typically interpreted by the PHP language. (php.net)


What is the usual file name extension for PHP?

.php


How do you create a PHP script?

To create a PHP script all you have to do is create a new file, then save the file as "filename.php". It must have a .php file extension.After that open the file and put in the PHP tags like shown.Then you write your PHP script within those tags and upload to your web space and check it out.