RE: [PHP] html editor written in PHP

2005-05-19 Thread Murray @ PlanetThoughtful
Has anyone seen an example of a HTML editor written in PHP (no JS)? You know the ones - for adding HTML tags to a text field, etc. Thanks! You've already received a number of responses indicating that it's not possible to have a pure PHP browser enabled HTML editor, mainly due to the fact

RE: [PHP] html editor written in PHP

2005-05-19 Thread Warren Vail
PHP is server side. I know this is conventional wisdom, but your answer ignores the fine work being done with PHP-GTK. In this case the PHP executes on the client machine (although not imbedded in a browser), as an application. However I don't know of any Editors that work with PHP-GTK, stay

Re: [PHP] html editor written in PHP

2005-05-18 Thread Mark Cain
I have not seen any and I know that you don't have time to read the replies of everyone who hasn't seen something. So let me tell you why it's most likely that there is not one (PHP HTML editor w/o JS). PHP is server side. Every click of the mouse would have to cause a page to be refreshed (a

RE: [PHP] html editor written in PHP

2005-05-18 Thread Pablo Gosse
snip Has anyone seen an example of a HTML editor written in PHP (no JS)? You know the ones - for adding HTML tags to a text field, etc. /snip I think what you're asking for is a logical impossibility. PHP is server side, so without javascript a browser-based wysiwyg editor would be impossible,