473,396 Members | 2,037 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

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 2616

"Rex" <re************@gmail.comwrote in message
news:11**********************@k79g2000hse.googlegr oups.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.googlegr oups.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.googlegr oups.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.googlegr oups.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.googlegr oups.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("thePageProcess.php");
?>

<html>
......more lines down to where it gets specific to this page. This is the
general "look and feel".
<?php require("thePageInclude.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********@gmail.comwrote in message
news:11**********************@g4g2000hsf.googlegro ups.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

"Shelly" <sh************@asap-consult.comwrote in message
news:13*************@corp.supernews.com...
>
"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 !!!!
sweet jesus! and do you notice what happens when you dare mention to a vi
professional when you suggest that, perhaps, it is antiquated as a
programming editor?
Sep 21 '07 #11

"Steve" <no****@example.comwrote in message
news:HY************@newsfe06.lga...
>
"Shelly" <sh************@asap-consult.comwrote in message
news:13*************@corp.supernews.com...
>>
"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 !!!!

sweet jesus! and do you notice what happens when you dare mention to a vi
professional when you suggest that, perhaps, it is antiquated as a
programming editor?
I meant to say "Much better than vi !!!!" vi sucks!

What is this "sweet jesus!" coming from YOU?

Shelly
Sep 21 '07 #12

"Shelly" <sh************@asap-consult.comwrote in message
news:13*************@corp.supernews.com...
>
"Steve" <no****@example.comwrote in message
news:HY************@newsfe06.lga...
>>
"Shelly" <sh************@asap-consult.comwrote in message
news:13*************@corp.supernews.com...
>>>
"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 !!!!

sweet jesus! and do you notice what happens when you dare mention to a vi
professional when you suggest that, perhaps, it is antiquated as a
programming editor?

I meant to say "Much better than vi !!!!" vi sucks!

What is this "sweet jesus!" coming from YOU?
lol. i had to stop myself in the other thread from going, 'OMG'. just notice
all the spots where i just left it at 'wow'.

;^)
Sep 21 '07 #13

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

Similar topics

2
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...
3
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...
5
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
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
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;...
1
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...
5
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. ...
6
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,...
4
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...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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...
0
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...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
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...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.