473,785 Members | 2,882 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Zend

AJ
Hi all

At the moment, I use Dreamweaver to develop the basics of my PHP stuff and
then hand tune anything that I need to. I'm now looking at the next level
and was wondering about Zend.

What I like about DW - from a lazy man's point of view - is that I can click
on a button to add loops or user authorisation or all sorts of other things
that would take me hours to hand code. Is the same sort of thing available
for Zend?

Cheers

Andy
Jul 17 '05 #1
13 3004
"AJ" wrote:
Hi all

At the moment, I use Dreamweaver to develop the basics of my PHP stuff and
then hand tune anything that I need to. I’m now looking at the
next level
and was wondering about Zend.

What I like about DW - from a lazy man’s point of view - is that
I can click
on a button to add loops or user authorisation or all sorts of other things
that would take me hours to hand code. Is the same sort of thing
available
for Zend?

Cheers

Andy


AJ, I am not too familiar with DW, but zend is primarily an IDE for
php. It can provide some assistance with html coding, but that is
probably much better done by DW.

The lazy aspects of zend relate to proposing variable names when you
type a few chars of their name, or telling you the argumnets of your
functions, etc. but that is for php.

--
http://www.dbForumz.com/ This article was posted by author's request
Articles individually checked for conformance to usenet standards
Topic URL: http://www.dbForumz.com/PHP-Zend-ftopict136882.html
Visit Topic URL to contact author (reg. req'd). Report abuse: http://www.dbForumz.com/eform.php?p=457261
Jul 17 '05 #2
AJ wrote:
Hi all

At the moment, I use Dreamweaver to develop the basics of my PHP
stuff and then hand tune anything that I need to. I'm now looking at
the next level and was wondering about Zend.

What I like about DW - from a lazy man's point of view - is that I
can click on a button to add loops or user authorisation or all sorts
of other things that would take me hours to hand code. Is the same
sort of thing available for Zend?

Cheers

Andy


I tried the latest Zend Development client and am not really happy with it.
First of all it's a java client and that isn't really something I am all
that happy about and I have had several cases where an endless loop in a
script caused the debugger to crash, and I had to manually stop php in the
XP Taskmanager. Also it has some weird quirks, like when you go back into a
variable you already partly typed, it keeps trying to autocomplete the name.
Hard to precisely explain, but annoying. For 350 bucks I wasn't really
impressed.
Pjotr
Jul 17 '05 #3
AJ
steve <Us************ @dbForumz.com> wrote in message news:<41******* ***@news.athena news.com>...
"AJ" wrote:
> Hi all
>
> At the moment, I use Dreamweaver to develop the basics of my PHP stuff
> and
> then hand tune anything that I need to. I?m now looking at the
> next level
> and was wondering about Zend.
>
> What I like about DW - from a lazy man?s point of view - is that
> I can click
> on a button to add loops or user authorisation or all sorts of

other
> things
> that would take me hours to hand code. Is the same sort of thing
> available
> for Zend?
>
> Cheers
>
> Andy


AJ, I am not too familiar with DW, but zend is primarily an IDE for
php. It can provide some assistance with html coding, but that is
probably much better done by DW.


IDE?

The lazy aspects of zend relate to proposing variable names when you
type a few chars of their name, or telling you the argumnets of your
functions, etc. but that is for php.


See, with DW, it makes life very, very easy. Let's say I want a sign
up process where the visitor chooses a username and password. I also
want it to check the username field in the table to disallow
duplicates before it adds a new one. Once I've created the table, etc
using PHPMyAdmin, it would probably take me less than 5 minutes to
create the signup page, the error page and the success page.

I started learning PHP by hand coding it and got nowhere. Using DW
has meant that i can write some pretty good stuff and I just pull it
apart to work out what's going on. I learn much more like this.

AJ
Jul 17 '05 #4
"Pjotr Wedersteers" wrote:
AJ wrote:
Hi all

At the moment, I use Dreamweaver to develop the basics of my PHP
stuff and then hand tune anything that I need to. I’m now looking at
the next level and was wondering about Zend.

What I like about DW - from a lazy man’s point of view - is

that I
can click on a button to add loops or user authorisation or all

sorts
of other things that would take me hours to hand code. Is the same sort of thing available for Zend?

Cheers

Andy


I tried the latest Zend Development client and am not really happy
with it.
First of all it’s a java client and that isn’t really
something I am all
that happy about and I have had several cases where an endless loop

in a
script caused the debugger to crash, and I had to manually stop php in the
XP Taskmanager. Also it has some weird quirks, like when you go back into a
variable you already partly typed, it keeps trying to autocomplete the name.
Hard to precisely explain, but annoying. For 350 bucks I wasn’t
really
impressed.
Pjotr


Hi Pjotr,

I have used it for avg. 4-6 hours a day for the last 6 months. No
complaints. That is my personal experience. I run it on Windows.
The product may have problems, but one has to compare with the others
in the field. I was not impressed with the free stuff, and the
closest was Nusphere phped for $500 (zend was $250, has price gone
up?). I could not see a compelling reason to go to Nusphere.

--
http://www.dbForumz.com/ This article was posted by author's request
Articles individually checked for conformance to usenet standards
Topic URL: http://www.dbForumz.com/PHP-Zend-ftopict136882.html
Visit Topic URL to contact author (reg. req'd). Report abuse: http://www.dbForumz.com/eform.php?p=457668
Jul 17 '05 #5
AJ wrote:
AJ, I am not too familiar with DW, but zend is primarily an IDE for
php. It can provide some assistance with html coding, but that is
probably much better done by DW.

IDE?


IDE means Integrated Development Environment.. in plain english, it's
an application which assists a developer with writing code. it's
basically a collection of useful tools integrated into one package
(often with some form of GUI) which work together to make the
developer's life that little bit easier, and taking some of the pain out
of some of the really mundane tasks.

--
Ben Cottrell AKA Bench

Disclaimer:
This post may contain explicit depictions of things which are "real".
These "real" things are commonly known as 'life'! So, if it sounds
sarcastic, don't take it seriously. If it sounds hazardous, Do not try
this at home or at all. And if it offends you, just don't read it.
Jul 17 '05 #6
"AJ" wrote:
steve <Us************ @dbForumz.com> wrote in message
news:<41126c29 _4@news.athenan ews.com>...
"AJ" wrote:
> Hi all
>
> At the moment, I use Dreamweaver to develop the basics of my PHP
stuff
> and
> then hand tune anything that I need to. I?m now looking at

the > next level
> and was wondering about Zend.
>
> What I like about DW - from a lazy man?s point of view - is that > I can click
> on a button to add loops or user authorisation or all sorts of
other
> things
> that would take me hours to hand code. Is the same sort of

thing > available
> for Zend?
>
> Cheers
>
> Andy


AJ, I am not too familiar with DW, but zend is primarily an IDE

for
php. It can provide some assistance with html coding, but that

is
probably much better done by DW.


IDE?

The lazy aspects of zend relate to proposing variable names when

you
type a few chars of their name, or telling you the argumnets of

your
functions, etc. but that is for php.


See, with DW, it makes life very, very easy. Let’s say I want a
sign
up process where the visitor chooses a username and password. I

also want it to check the username field in the table to disallow
duplicates before it adds a new one. Once I’ve created the
table, etc
using PHPMyAdmin, it would probably take me less than 5 minutes to
create the signup page, the error page and the success page.

I started learning PHP by hand coding it and got nowhere. Using DW
has meant that i can write some pretty good stuff and I just pull it apart to work out what’s going on. I learn much more like this.

AJ


That sounds great, AJ. The other approach is to find an existing
script, and then use a good PHP IDE to customize it to your need.

--
http://www.dbForumz.com/ This article was posted by author's request
Articles individually checked for conformance to usenet standards
Topic URL: http://www.dbForumz.com/PHP-Zend-ftopict136882.html
Visit Topic URL to contact author (reg. req'd). Report abuse: http://www.dbForumz.com/eform.php?p=457743
Jul 17 '05 #7
steve wrote:
"Pjotr Wedersteers" wrote:
> AJ wrote:
> > Hi all
> >
> > At the moment, I use Dreamweaver to develop the basics of my PHP
> > stuff and then hand tune anything that I need to. I'm now

> looking at
> > the next level and was wondering about Zend.
> >
> > What I like about DW - from a lazy man's point of view - is

> that I
> > can click on a button to add loops or user authorisation or all

> sorts
> > of other things that would take me hours to hand code. Is the same > > sort of thing available for Zend?
> >
> > Cheers
> >
> > Andy

>
> I tried the latest Zend Development client and am not really happy
> with it.
> First of all it's a java client and that isn't really
> something I am all
> that happy about and I have had several cases where an endless loop

in
> a
> script caused the debugger to crash, and I had to manually stop php

in
> the
> XP Taskmanager. Also it has some weird quirks, like when you go

back
> into a
> variable you already partly typed, it keeps trying to autocomplete

the
> name.
> Hard to precisely explain, but annoying. For 350 bucks I wasn't
> really
> impressed.
> Pjotr


Hi Pjotr,

I have used it for avg. 4-6 hours a day for the last 6 months. No
complaints. That is my personal experience. I run it on Windows.
The product may have problems, but one has to compare with the others
in the field. I was not impressed with the free stuff, and the
closest was Nusphere phped for $500 (zend was $250, has price gone
up?). I could not see a compelling reason to go to Nusphere.


True, I haven't tested all the free ones yet (I had not too much confidence
in those and decided to try Zend first, as they are a big name in php), 350
was a typo, sorry. 249$ still. My bad.

Maybe I am spoilt and thus biased by those neat integrated environments like
..NET ide and Delphi and such. I could have checked the competition first.
Again, my bad.

Still, I am not really impressed. But opinions.... yup, I also have one of
those ;-)
Bye
Pjotr
Jul 17 '05 #8
"Pjotr Wedersteers" wrote:
steve wrote:
"Pjotr Wedersteers" wrote:
> AJ wrote:
> > Hi all
> >
> > At the moment, I use Dreamweaver to develop the basics of my PHP > > stuff and then hand tune anything that I need to. I’m now > looking at
> > the next level and was wondering about Zend.
> >
> > What I like about DW - from a lazy man’s point of view - is > that I
> > can click on a button to add loops or user authorisation or all > sorts
> > of other things that would take me hours to hand code. Is
the
same
> > sort of thing available for Zend?
> >
> > Cheers
> >
> > Andy
>
> I tried the latest Zend Development client and am not really happy > with it.
> First of all it’s a java client and that isn’t really
> something I am all
> that happy about and I have had several cases where an endless loop
in
> a
> script caused the debugger to crash, and I had to manually
stop php
in
> the
> XP Taskmanager. Also it has some weird quirks, like when you

go back
> into a
> variable you already partly typed, it keeps trying to autocomplete
the
> name.
> Hard to precisely explain, but annoying. For 350 bucks I

wasn’t > really
> impressed.
> Pjotr


Hi Pjotr,

I have used it for avg. 4-6 hours a day for the last 6 months.

No complaints. That is my personal experience. I run it on Windows. The product may have problems, but one has to compare with the

others
in the field. I was not impressed with the free stuff, and the
closest was Nusphere phped for 0 (zend was 0, has price gone
up?). I could not see a compelling reason to go to Nusphere.


True, I haven’t tested all the free ones yet (I had not too much
confidence
in those and decided to try Zend first, as they are a big name in
php), 350
was a typo, sorry. 249$ still. My bad.

Maybe I am spoilt and thus biased by those neat integrated
environments like
..NET ide and Delphi and such. I could have checked the competition
first.
Again, my bad.

Still, I am not really impressed. But opinions.... yup, I also have
one of
those
Bye
Pjotr


Hi Pjotr,
I also develop extensively in Visual InterDev (predec. to .Net but
similar). I find zend easier to develop in, and does not hang
(requiring reboot) every 30 minutes. ".Net" version of interdev is
much better I am sure.

What I find is that in php, there are so many great scripts already
written so there is very little need to develop "from scratch". So
a good IDE for me is not one that can develop an application, but one
that helps me single step into an existing code, add things here and
there, and breakpoint and debug. Perhpas my use model is a bit
different from one developing an app from scratch.

--
http://www.dbForumz.com/ This article was posted by author's request
Articles individually checked for conformance to usenet standards
Topic URL: http://www.dbForumz.com/PHP-Zend-ftopict136882.html
Visit Topic URL to contact author (reg. req'd). Report abuse: http://www.dbForumz.com/eform.php?p=459412
Jul 17 '05 #9
"Pjotr Wedersteers" <x3****@westert erp.com> wrote in message news:<41******* **************@ news.xs4all.nl> ...
<snip>
I tried the latest Zend Development client and am not really happy with it.
First of all it's a java client and that isn't really something I am all
that happy about and I have had several cases where an endless loop in a
script caused the debugger to crash, and I had to manually stop php in the
XP Taskmanager. Also it has some weird quirks, like when you go back into a
variable you already partly typed, it keeps trying to autocomplete the name.
Hard to precisely explain, but annoying. For 350 bucks I wasn't really
impressed.


It's a well known fact that Zend is slowy. The Java client could
have saved the time of developers for cross platform issues, but not
the users.

You may try PHPEdit (not free now) or PHP Coder (free) or devphp
(free).

--
| Just another PHP saint |
Email: rrjanbiah-at-Y!com
Jul 17 '05 #10

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

Similar topics

2
3689
by: Google alias | last post by:
My trial period for Zend studio has just ended, I've requested a personal licence, and got it. After I've entered and rebooted by computer I still get a popup saying "Licence expired!" everytime I request a php-page from localhost. Very annoying! If googled on on licence expired zend studion personal edition. But that gave me mostely Russian Crack sites. Very tempting 8-) Can anybody please help me to remove the popup permanently? Im...
8
779
by: Andy Jacobs | last post by:
Evening folks This has probably been asked before so apologies for that. I'm using Dreamweaver for PHP and have been for nearly a year. I've done some stuff that I'm very happy with but I'm getting to the stage where it doesn't go far enough. I want something that will still automate a lot of what I do rather than having to hand code 100%. Someone suggested Zend and I wondered what people here thought? andy
1
4875
by: Toni | last post by:
I've tried to reinstall the zend environment and debugger on my new computer. I almost succeeded but when I try to debug or profile a webpage by clicking on the buttons on the toolbars I get the following message in my browser: Failed to connect to host '192.168.2.102'. Failed to connect to host '192.168.126.1'. Failed to connect to host '192.168.47.1'. (I've got a network card, Wifi and Bluetooth in the machine)
5
3022
by: news | last post by:
I'm trying out the Zend Development Environment 4, and for the most part I like it, except for two things. It seems to think certain lines that are perfectly valid are bugs. Like this: while ($row_pass = mysql_fetch_array($result_pass)) { It gives an "Assignment in Condition" error whenever it encounters a line like that, which is a lot. It gives a little explanation box
0
1462
by: cantelow | last post by:
Greetings. I am getting some Arithmetic Exception exit signal messages in my apache logs and intermittent lost pages in a photopost app, dating from an upgrade to php 4.3.10, and I'm investigating whether this could have anything to do with the Zend incompatability that is mentioned in red on php.net for the 4.3.10 download. php 4.3.10 comes with Zend, and the version mentioned both in phpinfo and in zend.h file in the php...
3
2251
by: nntp | last post by:
What is ZEND. Why it has anything to do with programming PHP?
1
2149
by: Xristos Nikolopoulos | last post by:
Hello, I have made an application that needs to upload files, the application is deployed in several folders, and each folder has its php files. The problem is, I have in the folder I want to upload the php files that do the job and a php.ini file to change limits.
0
2065
by: JoeT | last post by:
Hi... OK...I'm having difficulty understanding a problem with installing Zend Studio 5.5 on an Intel Mac. Prior to the install, I had the zend /library installed, and was able to successfully run Zend_Db commands against a local mysql server (5.1) from the commandline (e.g. php testdb.php). This stuff ran just fine. The code is simply:
4
2574
by: Blueparty | last post by:
I am going to use Ioncube or Zend compiler/encoder to deploy PHP5 applications on servers at customers premisses. The factors that affect choice are: - reliability - easy of deployment at Apache/UNIX, Apache Windows and IIS/Windows - price Performace is not important
0
1328
by: corretge | last post by:
Zend outsourced the news service to businesses. NET http://66.102.9.104/translate_c?hl=ca&sl=ca&tl=en&u=http://bloc.corretge.cat/2008/10/zend-subcontracta-newsletter-empreses.html&usg=ALkJrhjkf9b8JtrGNpx994AAqE7mztkn7Q It seems that Zend, the creator of the PHP core current and known as The PHP Company, not too well coordinated marketing campaigns. At the Zend Monthly Newsletter - October and November 2008 saw the URL contains the...
0
9645
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
9480
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,...
1
10092
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8973
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...
1
7499
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6740
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();...
1
4053
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
2
3647
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2879
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.