I am familiar with editing of html files in frontpage to make modifications in fonts, change or add text, tables etc. But what is the easiest way to do so for php pages. For example how can someone edit fonts, table colours, add banner codes etc. on different pages of a script based site like http://www.naukrijobsindia.com/ There are no html paged to edit! so editing php is only choice. Is there any free or paid WYSIWUG editor for php pages similar to frontpage? Help please.
WYSIWYG (What-You-See-Is-What-You-Ge) Web Builder Download http://rapidshare.com/files/161382010/WYSIWYG_Web_Builder_5.5.4.rar Code (markup):
There is always some html mixed in there somewhere. You just need to dig in and find it. That being said, most of your attributes will be in you CSS file. So that's where I would start.
use a text editor to edit php files. website builders will only screw up the php code. anyways this question should be here, better suited in the php forum.
Try PsPad ----> www*pspad*com Features: * work with projects * work with several documents at the same time (MDI) * save desktop sessions to later reopen all session files * FTP client - edit files directly from the web * macro recorder to record, save and load macros * search and replace in files * text difference with color-coded differences highlighted * templates (HTML tags, scripts, code templates...) * installation contains templates for HTML, PHP, Pascal, JScript, VBScript, MySQL, MS-Dos, Perl,... * syntax highlighting according to file type * user-defined highlighters for exotic environments * auto correction * intelligent internal HTML preview using IE and Mozilla * full HEX editor * call different external programs for different environments * external compiler with output catcher, log window and log parser for an "IDE" effect in every environment * color syntax highlight printing and print preview * integrated TiDy library for formatting and checking HTML code, conversion to CSS, XML, XHTML * integrated free version of the top CSS editor TopStyle Lite * export with highlight to RTF, HTML, TeX format to file or clipboard * column block select, bookmarks, line numbers, ... * reformat and compress HTML code, tag character case change * line sorting with ability to sort on defined columns and drop duplicates * ASCII chart with HTML entities * Code explorer for Pascal, C/C++, INI, HTML, XML, PHP and more in development * spell checker * internal web browser with APACHE support * matching bracket highlighting * ...(many more features, too numerous to list) have been using this for quite some time now and works fine for me. It Does the basics of what your asking for.
Editing PHP files is very smilar to editing HTML files. PHP files just use exra functions. There are a lot of WYSIWYG editors out there aswell as text editors. If you can afford it, I would recommend Dreamweaver which makes the job a lot easier.
from what I have seen so far it looks like there are not many options to edit php as easily as say a html file.
There are no WYSIWYG editors for PHP as most PHP scripts require a server or localhost, as PHP is a server side scripting code, and HTML is just client side. If you want to edit the HTML of a php file I used to save the PHP file as HTML (PHP script will be disabled), this allows you to see the page as it was all HTML, then edit it. Don't forget to change it back to .php when you have finished