473,775 Members | 3,625 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Looking for a WYSIWYG editor for PHP + HTML

Rex
Hello,

I am a PHP newbie looking for a PHP editor I can use with a WYSIWYG
interface for HTML (e.g. like Dreamweaver or Frontpage). I'm running
Vista. I am having installation problems with both Dreamweaver and
FCKEditor, so those two seem out of the question, even though they do
what I want. Basically, I'm looking to make changes mostly to the HTML
content of a PHP website, and want to do so in the easiest way
possible, preferably without having to manually FTP my files to and
from my computer.

Any insights?

Thanks!

Rex

Sep 21 '07 #1
12 2650

"Rex" <re************ @gmail.comwrote in message
news:11******** **************@ k79g2000hse.goo glegroups.com.. .
Hello,

I am a PHP newbie looking for a PHP editor I can use with a WYSIWYG
interface for HTML (e.g. like Dreamweaver or Frontpage). I'm running
Vista. I am having installation problems with both Dreamweaver and
FCKEditor, so those two seem out of the question, even though they do
what I want. Basically, I'm looking to make changes mostly to the HTML
content of a PHP website, and want to do so in the easiest way
possible, preferably without having to manually FTP my files to and
from my computer.

Any insights?

Thanks!

not wysiwg, but...

winscp in conjunction with crimson editor. my winning combination anyway.
Sep 21 '07 #2
"Rex" <re************ @gmail.comwrote in message
news:11******** **************@ k79g2000hse.goo glegroups.com.. .
>
I am a PHP newbie looking for a PHP editor I can use with a WYSIWYG
interface for HTML (e.g. like Dreamweaver or Frontpage). I'm running
Vista. I am having installation problems with both Dreamweaver and
FCKEditor, so those two seem out of the question, even though they do
what I want. Basically, I'm looking to make changes mostly to the HTML
content of a PHP website, and want to do so in the easiest way
possible, preferably without having to manually FTP my files to and
from my computer.
Zend Studio does that for $99.
Sep 21 '07 #3
On 21 sep, 10:07, "Sanders Kaufman" <bu...@kaufman. netwrote:
"Rex" <rex.eastbou... @gmail.comwrote in message

news:11******** **************@ k79g2000hse.goo glegroups.com.. .
I am a PHP newbie looking for a PHP editor I can use with a WYSIWYG
interface for HTML (e.g. like Dreamweaver or Frontpage). I'm running
Vista. I am having installation problems with both Dreamweaver and
FCKEditor, so those two seem out of the question, even though they do
what I want. Basically, I'm looking to make changes mostly to the HTML
content of a PHP website, and want to do so in the easiest way
possible, preferably without having to manually FTP my files to and
from my computer.

Zend Studio does that for $99.
You have a nice plugin for Eclipse: http://download.eclipse.org/tools/pdt/downloads/

Do you know Nvu/kompozer: http://www.kompozer.net/? Done by Mozilla's
foundation...

But, since I have tried Send Studio, I admit that it is the best IDE
I've worked with!

Sep 21 '07 #4

"Rex" <re************ @gmail.comwrote in message
news:11******** **************@ k79g2000hse.goo glegroups.com.. .
Hello,

I am a PHP newbie looking for a PHP editor I can use with a WYSIWYG
interface for HTML (e.g. like Dreamweaver or Frontpage). I'm running
Vista. I am having installation problems with both Dreamweaver and
FCKEditor, so those two seem out of the question, even though they do
what I want. Basically, I'm looking to make changes mostly to the HTML
content of a PHP website, and want to do so in the easiest way
possible, preferably without having to manually FTP my files to and
from my computer.

Any insights?

Thanks!

Rex
I use Dreamweaver as my editor and ftp client. The HTNL is WYSIWYG, and the
php is nicely color-coded. I don't see the need for a WYSIWYG for the php
part.

Shelly
Sep 21 '07 #5

"Rex" <re************ @gmail.comwrote in message
news:11******** **************@ k79g2000hse.goo glegroups.com.. .
Hello,

I am a PHP newbie looking for a PHP editor I can use with a WYSIWYG
interface for HTML (e.g. like Dreamweaver or Frontpage). I'm running
Vista. I am having installation problems with both Dreamweaver and
FCKEditor, so those two seem out of the question, even though they do
what I want. Basically, I'm looking to make changes mostly to the HTML
content of a PHP website, and want to do so in the easiest way
possible, preferably without having to manually FTP my files to and
from my computer.

Any insights?

Thanks!

Rex
While you are at it and beginning your PHP experience, consider the
structure that I finally adopted for myself. Any page I now write is
actually at least three files. The first file I call my template file. It
includes two other files. I goes something like this:

thePage.php:
-------------

<?php
session_start() ;
require("thePag eProcess.php");
?>

<html>
......more lines down to where it gets specific to this page. This is the
general "look and feel".
<?php require("thePag eInclude.php"); ?>
......more trailing stuff to finish up.
</html>

------------

The thePageInclude. php file has the rest of the html stuff (and might have
some embedded <?php ?pieces as well. All the submittal processing and the
iniitalization stuff is done in the thePageProcess. php file. This greatly
speeds up development of multiple pages for a site and having a common look
and feel. It also reduced the testing time for look and feel and
centralizes it for easier modification (less errors). I also like to break
down other areas with appropriate "require"s as needed. Specifically, I
like to put my constants and common functions in separate files so that I
need to change things in only one place.

I am currently studying aspx.net. I was surprised to learn that they do
exactly the same thing. The have what they call a master page file (my
thePage.php), a page file for specific page that has all the html kind of
stuff (my thePageInclude. php) and a code-behind file that handles all the
submittal stuff (my thePageProcess. php).

Proper organization and design at the beginning save a tremendous amount of
time later on.

Shelly
Sep 21 '07 #6
"panda31" <mm********@gma il.comwrote in message
news:11******** **************@ g4g2000hsf.goog legroups.com...
But, since I have tried Send Studio, I admit that it is the best IDE
I've worked with!
It should be - Zend calls themselves "The PHP Company" for a very good
reason.
Much of the PHP development was actually done by Zend.

Now, they've got this cool little utility called "Zend Core" to make sure
your production and development servers have all the software and
configurations they need to make sure apps work well.

If it wasn't for Zend - I'd still be stuck trying to develop MS stuff.
Sep 21 '07 #7
Use notepad++. It's great. Also dreamweaver is a great app for codin

Sep 21 '07 #8
abhisek wrote:
Use notepad++. It's great. Also dreamweaver is a great app for codin
Dreamwaver is very good for 'artistic' layout of HTML, but its useless
when you have to put PHP in there,

FWIW I use Smultron on the Mac, and ConTEXT on the PC for writing code in.

Both are smart editors that use highlights and color to emphasise the
elements of the language they think you are writing in, and both are free.

On Linux there is always bloody EMACS, which persists, like Sendmail,
because it has always been there..and people get suckered into it..
Sep 21 '07 #9

"The Natural Philosopher" <a@b.cwrote in message
news:11******** *******@proxy02 .news.clara.net ...
abhisek wrote:
>Use notepad++. It's great. Also dreamweaver is a great app for codin
Dreamwaver is very good for 'artistic' layout of HTML, but its useless
when you have to put PHP in there,

FWIW I use Smultron on the Mac, and ConTEXT on the PC for writing code in.

Both are smart editors that use highlights and color to emphasise the
elements of the language they think you are writing in, and both are free.

On Linux there is always bloody EMACS, which persists, like Sendmail,
because it has always been there..and people get suckered into it..
Much be than vi !!!!
Sep 21 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1856
by: David Winter | last post by:
I'm not a developer myself, but I am looking for something that maybe one of you guys - has done - knows about - would like to do - yes, I have a small budget for this. :) The basic idea: A browser-based editor for *static* HTML pages, like this:
3
2238
by: Mel Smith | last post by:
HI Friends, I'm a newbie at html writing but am a computer programmer and use a great editor (The Semware Editor - TSE) for all my coding -- even building my own first web pages. I'd like your recommendation for a good wysiwyg HTML editor please. (either free or commercial). I want to build 'quick' web pages with a wysiwyg editor, then 'fine-tune'
5
1594
by: Arsalan | last post by:
How do they make WYSIWYG editor in the browser ? I've seen couple of website using them, but how do they make a WYSIWYG editor in the browser ?
12
2373
by: Michael Peters | last post by:
für einen Enduser, der kein HTML kann und nur die Contents auf statischen Seiten ändern will, brauche ich einen einfach zu bedienenden WYSIWYG-Editor. Wäre dankbar für Empfehlungen! -m
4
3034
by: David Lozzi | last post by:
Howdy, I'm using a WYSIWYG editor called TinyMCE. When I edit some text and then save it back to my SQL server using a SQLCommand, all HTML characters are changed to HTML code, i.e. &gt;strong&lt; instead of <strong> and so on. Is this a problem with the editor or something else? Does .Net convert it? I had to disable page validate request because of the tags, is there more? Thanks,
1
2654
by: .::alex::. | last post by:
Hello, I tried to find a complete powerfull .NET wysiwyg html editor as the editor from www.pintexx.com. There is a version for windows applications but it is a kind of fake because it is web based at the root. I search a kind of DHTML editor control ... totaly dedicated to windows applications (.NET). Somebody knows if it exists somewhere? Thank you in advance,
5
2333
by: DaveC | last post by:
I need some sage advice. For years I have been using a HTML editor (HomeSite 3) to produce crude web sites, mostly travelogs with text and a few clickable thumbnails leading to larger images. When I get going I usually produce a marginally navigable mess with sub pages and sub-sub pages. Check http://www.davearoundtheworld.org/s_chile/index.html as an example. These crude pages take me a lot of time. I would like to improve my web...
6
2940
jhardman
by: jhardman | last post by:
I have gotten very used to writing my HTML code in notepad, but have recently switched to mac. Although NotePad has some problems, the mac equivalent, TextEdit, is terrible! I can save a file OK, but when I open it again it switches to WYSIWYG mode, which I can't stand, and I can't figure out how to get it off. What I would really like is a simple, easy editor, hopefully easier to use than one of those old command-line editors, but not...
4
2108
by: James A. Donald | last post by:
When I format my html, I will do it in source view, thank you, because any html editor that presumes to output code, outputs crap. But I would like an editor in which I can edit plain text in WYSIWYG. I tried Seamonkey, and found that it is not ready for prime time - it does not remember what files you recently used, it keeps doubling the carriage returns, so that one's source view gets sparser and sparser, and it keeps inserting...
0
9622
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9455
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10272
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10110
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9917
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8941
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6719
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5487
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4020
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.