Ask a Question related to PHP Development, Design and Development.
-
grz02 #1
PHP Design tools? IDE?
Hi,
Im an experienced database+software designer and developer,
but, unfortunately, anything to do with web-programming and
web-systems designs is still a pretty new area to me...
(been working mostly with "legacy" environments the last 10 years)
So I am writing this, hoping to get some useful advise and feedback...
I have done some pretty trivial, small websites with html/PHP,
and now starting a bit more advanced one, where I will need SQL
database-support, and will probably go for MySQL.
Of course, I have read some elemantary tutorials and articles on the web,
but still wonder how PHP is actually being used in practice when
creating bigger web-sites...
Is PHP usually handcoded?
Like... you just make up a database, then a number of tables you think will do,
and finally (what I am most concerned about) a multiplicity of different
PHP script-files in an ad-hoc fashion?
(I hope not, since it seems that this will quite soon produce a pretty
diffcult-to-maintain-and-grasp mess of the whole system)
So what I would like to learn, is what nice (preferrably free/open-source)
tools for design and project-management are available?
My idea is that you would like to have some IDE application, something
like VB or Delphi or VC++, where you design your webpages and
forms in a graphical manner, and you can code "event" pieces of code
that will react to clicks, buttons and user-actions like
in the traditional IDE:s.
And then there is some "compiler" or rather that do all the boring routine-work
of converting your design to html/PHP code.
The page-designs would also be based on "templates", of course,
so its flexible to modify if you want to change the look-and-feel
of your whole site.
Ideally, I would also prefer that the whole website-design
would be stored in a separate, fixed set of tables in the database,
rather than in a zillion different script-files, CSS-sheets, etc.
I can also envision a design where, even if the website contains
a huge number of pages and different functions,
there would actually only be a single PHP-script "index.php"
and all sub-pages are generated on-the-fly, from arguments
in the URL, i.e. all URLs simply looking like:
index.php?pageid=1
index.php?pageid=2
...
index.php?pageid=productlist
index.php?pageid=registration
index.php?pageid=loginform
index.php?pageid=contactform
etc...
The index.php startfile might only look something like:
<html>
<php?
include("lib.php");
main();
?>
</html>
Then all pages would be generated on-the-fly by the main() function
(defined in "lib.php", along with a host of useful subroutines),
and driven by the URL-parameter 'pageid' and the overall site-design
somehow stored in the database.
All design-work you did in the IDE (graphical, code-snippets, etc)
would then actually be stored in the DB, and the PHP script-files
could then be a quite static PHP-implementation of an "engine"
reading the DB-content and outputting the HTML-code and pages.
So... could you please give me a short brief/hints/links to what
IDEs and/or other free tools, along those lines, that already exist
or what are commonly used for PHP/MySQL in real-world development.
Thanks,
grz02 Guest
-
Visual design tools and DAL in VS 2005 / .NET 2.0
Hi I wrote quite a few apps with .NET 1.0 and 1.1, which made use of a Data Access Layer, and also used the Microsoft Application Blocks for Data... -
Article : Security Tools Part -- 2 (.Net FrameWork Tools Series)
Hey Group, Yesterday we created our own certificate installed the certificate in the certificate store and even created a key container for the... -
PHP Design tools? IDEs?
Im an experienced database+software designer and developer, but, unfortunately, anything to do with web-programming and web-systems designs is... -
freelance web programming, web site design,c programming, java programming, VERY Low Cost web design and more
Find expert freelance programmers and designers at the prices you want to pay. Post your projects and programmers will place bids, you choose the... -
I love a Publisher design, can I import the design into Frontpage?
I'm establishing an identity for my new company using a Publisher design set. How do I use that basic design in Frontpage? Can I just creat a... -
Tony Marston #2
Re: PHP Design tools? IDE?
"grz02" <grz01@spray.se> wrote in message
news:1641ee43.0410071356.717fb49e@posting.google.c om...The way to Rapid Application Development (RAD) in any language, not just> Hi,
>
> Im an experienced database+software designer and developer,
> but, unfortunately, anything to do with web-programming and
> web-systems designs is still a pretty new area to me...
> (been working mostly with "legacy" environments the last 10 years)
>
> So I am writing this, hoping to get some useful advise and feedback...
>
> I have done some pretty trivial, small websites with html/PHP,
> and now starting a bit more advanced one, where I will need SQL
> database-support, and will probably go for MySQL.
>
> Of course, I have read some elemantary tutorials and articles on the web,
> but still wonder how PHP is actually being used in practice when
> creating bigger web-sites...
>
> Is PHP usually handcoded?
> Like... you just make up a database, then a number of tables you think
> will do,
> and finally (what I am most concerned about) a multiplicity of different
> PHP script-files in an ad-hoc fashion?
> (I hope not, since it seems that this will quite soon produce a pretty
> diffcult-to-maintain-and-grasp mess of the whole system)
PHP, is to have a solid architectural framework with lots of reusable
modules which you can access in order to build individual components or
transactions. You may start by using something pre-written by somebody else,
but once you have sussed out how it works you may wish to customise it,
either because you wish to add more options, or because your personal style
is different.
When it comes to architectural frameworks I would suggest the 3-tier
architecture or Model-View-Controller (personally I use both combined). The
3-tier architecture includes a Data Access Object (DAO) which contains the
code which carries out all communication with the database.
When it comes to building individual components with their own screens you
can either produce all HTML tags from within your PHP code, or you can use a
templating system. Personally I use XSL transformations from XML data as it
is controlled by W3C standards and is used widely across the entire
industry, not just within the PHP world.
If you want further ideas you can browse the articles on my website at
[url]http://www.tonymarston.co.uk/php-mysql/index.html[/url]
Web pages do not have "events" like traditional desktop applications. The> So what I would like to learn, is what nice (preferrably free/open-source)
> tools for design and project-management are available?
>
> My idea is that you would like to have some IDE application, something
> like VB or Delphi or VC++, where you design your webpages and
> forms in a graphical manner, and you can code "event" pieces of code
> that will react to clicks, buttons and user-actions like
> in the traditional IDE:s.
client issues an HTTP request, the web server recives it and generates a
response. Web pages are also stateless, which involves another big change in
thinking.
PHP code is not compiled, it is interpretted. However, there are third-party> And then there is some "compiler" or rather that do all the boring
> routine-work
> of converting your design to html/PHP code.
utilities that are able to cache the intermedaite bytecode.
Templating systems do not come built into PHP, you have you choose one and> The page-designs would also be based on "templates", of course,
> so its flexible to modify if you want to change the look-and-feel
> of your whole site.
plug it in to your framework.
Dream on. Unless you can configure your web server to access a database you> Ideally, I would also prefer that the whole website-design
> would be stored in a separate, fixed set of tables in the database,
> rather than in a zillion different script-files, CSS-sheets, etc.
MUST have scripts as files in a directory.
Yuck! You are talking about a front controller. Personally I would avoid> I can also envision a design where, even if the website contains
> a huge number of pages and different functions,
> there would actually only be a single PHP-script "index.php"
> and all sub-pages are generated on-the-fly, from arguments
> in the URL, i.e. all URLs simply looking like:
such things like the plague and go for smaller page controllers.
WYSIWYG editors for web pages are notorious for producing inefficient HTML> index.php?pageid=1
> index.php?pageid=2
> ...
> index.php?pageid=productlist
> index.php?pageid=registration
> index.php?pageid=loginform
> index.php?pageid=contactform
>
> etc...
>
> The index.php startfile might only look something like:
>
> <html>
> <php?
> include("lib.php");
> main();
> ?>
> </html>
>
> Then all pages would be generated on-the-fly by the main() function
> (defined in "lib.php", along with a host of useful subroutines),
> and driven by the URL-parameter 'pageid' and the overall site-design
> somehow stored in the database.
>
> All design-work you did in the IDE (graphical, code-snippets, etc)
> would then actually be stored in the DB, and the PHP script-files
> could then be a quite static PHP-implementation of an "engine"
> reading the DB-content and outputting the HTML-code and pages.
code. Quite frankly if you are unable to build web pages without such an
editor then your are a pretty poor developer. PHP was designed to produce
HTML tags, so if you do not know how to generate HTML tags manually you will
find PHP too difficult for your limited abilities.
Different developers use different combinations of tools to achieve their> So... could you please give me a short brief/hints/links to what
> IDEs and/or other free tools, along those lines, that already exist
> or what are commonly used for PHP/MySQL in real-world development.
purpose. I do it one way, but a thousand other developers will do it a
thousand other ways. Who is right? We all are. You pays your money and you
takes your choice.
Happy hunting.
--
Tony Marston
[url]http://www.tonymarston.net[/url]
Tony Marston Guest
-
Tim Tyler #3
Re: PHP Design tools? IDE?
grz02 <grz01@spray.se> wrote or quoted:
That's called a "front controller".> I can also envision a design where, even if the website contains
> a huge number of pages and different functions,
> there would actually only be a single PHP-script "index.php"
> and all sub-pages are generated on-the-fly, from arguments
> in the URL, i.e. all URLs simply looking like:
>
> index.php?pageid=1
> index.php?pageid=2
> ...
> index.php?pageid=productlist
> index.php?pageid=registration
> index.php?pageid=loginform
> index.php?pageid=contactform
>
> etc...
>
> The index.php startfile might only look something like:
>
> <html>
> <php?
> include("lib.php");
> main();
> ?>
> </html>
[url]http://www.phppatterns.com/index.php/article/articleview/81/1/1/[/url]
....is an article about front controllers in PHP.
It is good - but AFAICS, the arguments given against front controllers
in it are hogwash.
The main objections are:
``In the simple example above, that may not seem like a problem, but what
about when you have hundreds of Page Controllers? You end up with a
massive switch statment or perhaps something disguised in an array, an
XML document or whatever. For every page request, PHP will have to
reload a bunch of data which is irrelevant to the current request the
user is trying to perform.''
This is fundamentally the same task a webserver performs when looking up a
file in a filing system. If PHP is doing the task, the webserver
doesn't have to. It might be a bit slower in PHP than in C - but
that's hardly a reason for not doing it in PHP.
....and...
``The other problem with running everything through a single PHP script,
such as index.php, is it imposes a significant restriction on the
flexibility PHP offers, by default, of allowing developers to "drop a
script" anywhere under the web server's web root directory. Adopting
this approach will likely cause you problems later, both from the
practical perspective of having to updating the command hierarchy each
time you create a new file to issues like integration with other PHP
applications.''
....which seems like nonsense to me. If you /must/ access code that
is incompatible with a front controller (for some reason) nothing
stops you from doing so. You lose the front controller's facilities
in the process - but the alternative is not having them at all in
the first place - so in practice little is lost.
Storing your code in a filing system is a bit backwards - since
you have to do independent version control, history tracking,
backups, permission handling and updates.
Everything should go into a database.
Microsoft realised this - with WinFS:
[url]http://msdn.microsoft.com/Longhorn/understanding/pillars/WinFS/default.aspx[/url]
....but have yet to pull it off.
--
__________
|im |yler [url]http://timtyler.org/[/url] [email]tim@tt1lock.org[/email] Remove lock to reply.
Tim Tyler Guest
-
Tim Van Wassenhove #4
Re: PHP Design tools? IDE?
In article <I59pBA.1pM@bath.ac.uk>, Tim Tyler wrote:
The fileserver has to do a lookup anyways, to map the request to the> It is good - but AFAICS, the arguments given against front controllers
> in it are hogwash.
>
> The main objections are:
>
> ``In the simple example above, that may not seem like a problem, but what
> about when you have hundreds of Page Controllers? You end up with a
> massive switch statment or perhaps something disguised in an array, an
> XML document or whatever. For every page request, PHP will have to
> reload a bunch of data which is irrelevant to the current request the
> user is trying to perform.''
>
> This is fundamentally the same task a webserver performs when looking up a
> file in a filing system. If PHP is doing the task, the webserver
> doesn't have to. It might be a bit slower in PHP than in C - but
> that's hardly a reason for not doing it in PHP.
controller script. Thus you end up with 2 lookups, where the first is
pure overhead. In the case you want to have some code that is executed
in every script you can also consider using the auto_prepend and
auto_append functionality php has.
My conclusion: The added value of a controller is 0. Not even
mentionning that the chances for introducing bugs in your request->page
mapper. Where the code in your webserver has been tested many times
before.
Imho, a file system is a database.> Storing your code in a filing system is a bit backwards - since
> you have to do independent version control, history tracking,
> backups, permission handling and updates.
>
> Everything should go into a database.
--
Met vriendelijke groeten,
Tim Van Wassenhove <http://www.timvw.info>
Tim Van Wassenhove Guest
-
Christian Fersch #5
Re: PHP Design tools? IDE?
grz02 wrote:
First thing to remember: This html + http. Your possibilities are very> Im an experienced database+software designer and developer,
> but, unfortunately, anything to do with web-programming and
> web-systems designs is still a pretty new area to me...
> (been working mostly with "legacy" environments the last 10 years)
limited (and also the work for you to do ;). But this also makes
UI-Design the most important thing when writing php-code, for the code
itself is not really a problem. But UI-Design is very difficult, for you
can barely interact with the user.
IMHO this makes php very different from any other programming language.
Yeah, I would say so - but that doesn't mean that you will have to do it.> Is PHP usually handcoded?
This is done quite often with php (the wbb is written this way), but> Like... you just make up a database, then a number of tables you think will do,
> and finally (what I am most concerned about) a multiplicity of different
> PHP script-files in an ad-hoc fashion?
> (I hope not, since it seems that this will quite soon produce a pretty
> diffcult-to-maintain-and-grasp mess of the whole system)
this definitely doesn't mean, that it is a good way.
For php: Not really any.> So what I would like to learn, is what nice (preferrably free/open-source)
> tools for design and project-management are available?
Of course you should use templates for any of your projects (I would say> My idea is that you would like to have some IDE application, something
> like VB or Delphi or VC++, where you design your webpages and
> forms in a graphical manner, and you can code "event" pieces of code
> that will react to clicks, buttons and user-actions like
> in the traditional IDE:s.
> And then there is some "compiler" or rather that do all the boring routine-work
> of converting your design to html/PHP code.
> The page-designs would also be based on "templates", of course,
> so its flexible to modify if you want to change the look-and-feel
> of your whole site.
that everything with more than 30 lines of codes should use a
template-system). Which template engine to use is your first decision
(smarty, etc or a self-written?).
But the thing with vb-like design and events is neither available nor
needed - html does this already. There are no events, all fields are
perfectly given to you in the $_REQUEST variable - nothing more to want.
What you seem to be looking for is a WYSIWYG Editor for html. Of course
you can use one (I'd say dreamweaver is definitely the best one for
windows, but it's not free), but that has nothing to do with php, but
rather just a matter of your html-design. You could also write you html
in a text-editor - it's not such a big difference, once you've learned it.
CSS should stay in files, for there is no use in storing it in tables.> Ideally, I would also prefer that the whole website-design
> would be stored in a separate, fixed set of tables in the database,
> rather than in a zillion different script-files, CSS-sheets, etc.
One big css file for your whole site will do it. If you don't like
files, you can of course store your templates in the database, but this
is not making a real difference. You will change a zillion different
files to a zillion different table-rows...
[snip]> I can also envision a design where, even if the website contains
> a huge number of pages and different functions,
> there would actually only be a single PHP-script "index.php"
> and all sub-pages are generated on-the-fly, from arguments
> in the URL, i.e. all URLs simply looking like:
>
> index.php?pageid=productlist
>
> etc...This isn't such a good thing to do. You should combine some functions in> Then all pages would be generated on-the-fly by the main() function
> (defined in "lib.php", along with a host of useful subroutines),
> and driven by the URL-parameter 'pageid' and the overall site-design
> somehow stored in the database.
one file, but not all - this will get big and bloated and your urls will
look ugly and will be hard to understand. Just look at some forums (not
the wbb - it's coding style is complete shit) - they have 5-15 files,
each dedicated to a set of functions (one for thread-handling, one for
post-handling, one for the user-profile and settings, and the admin
control panel completely separated into a separate dir). I'd say that
this is the right way to do it.
That's what templates do.> All design-work you did in the IDE (graphical, code-snippets, etc)
> would then actually be stored in the DB, and the PHP script-files
> could then be a quite static PHP-implementation of an "engine"
> reading the DB-content and outputting the HTML-code and pages.
The best editor for windows is NuSphere's phpEd. But it costs 500$. Good> So... could you please give me a short brief/hints/links to what
> IDEs and/or other free tools, along those lines, that already exist
> or what are commonly used for PHP/MySQL in real-world development.
- completely free - tools are rare for php (on windows).
I'd say you have a strange view of php and should think about a bit, for
most of what you wanted an IDE to do is done with a template-system and
the already existing separation of processing-code ->PHP and design and
interface code ->HTML.
greetings, Christian
Christian Fersch Guest
-
Tony Marston #6
Re: PHP Design tools? IDE?
"Tim Tyler" <tim@tt1lock.org> wrote in message news:I59pBA.1pM@bath.ac.uk...No they're not. IMHO they are perfectly sound. Front controllers were> grz02 <grz01@spray.se> wrote or quoted:
>>>> I can also envision a design where, even if the website contains
>> a huge number of pages and different functions,
>> there would actually only be a single PHP-script "index.php"
>> and all sub-pages are generated on-the-fly, from arguments
>> in the URL, i.e. all URLs simply looking like:
>>
>> index.php?pageid=1
>> index.php?pageid=2
>> ...
>> index.php?pageid=productlist
>> index.php?pageid=registration
>> index.php?pageid=loginform
>> index.php?pageid=contactform
>>
>> etc...
>>
>> The index.php startfile might only look something like:
>>
>> <html>
>> <php?
>> include("lib.php");
>> main();
>> ?>
>> </html>
> That's called a "front controller".
>
> [url]http://www.phppatterns.com/index.php/article/articleview/81/1/1/[/url]
>
> ...is an article about front controllers in PHP.
>
> It is good - but AFAICS, the arguments given against front controllers
> in it are hogwash.
designed for languages such as Java which have web servers which behave
differently to Apache. With Apache you can have a URL that says
[url]www.site.com/page256.php?arg1=foo&arg2=bar[/url] and it will go straight to the
requseted page. Using [url]www.site.com/index.php?page=256&arg1=foo&arg2=bar[/url]
means that everything has to go through index.php first, and index.php must
then contain code to redirect to page256.php. Not only is this an unecessary
overhead, it also means that every time you change your application you must
remember to update index.php. This is a disaster waiting to happen, IMHO. I
much prefer having a separate controller for each page.
--
Tony Marston
[url]http://www.tonymarston.net[/url]
The web server does not have a massive switch statement. It simply has the> The main objections are:
>
> ``In the simple example above, that may not seem like a problem, but what
> about when you have hundreds of Page Controllers? You end up with a
> massive switch statment or perhaps something disguised in an array, an
> XML document or whatever. For every page request, PHP will have to
> reload a bunch of data which is irrelevant to the current request the
> user is trying to perform.''
>
> This is fundamentally the same task a webserver performs when looking up a
> file in a filing system. If PHP is doing the task, the webserver
> doesn't have to. It might be a bit slower in PHP than in C - but
> that's hardly a reason for not doing it in PHP.
name of one of thousands of possible files that may exist on your file
system.
You do not lose any functionality of a front controller by using separate> ...and...
>
> ``The other problem with running everything through a single PHP script,
> such as index.php, is it imposes a significant restriction on the
> flexibility PHP offers, by default, of allowing developers to "drop a
> script" anywhere under the web server's web root directory. Adopting
> this approach will likely cause you problems later, both from the
> practical perspective of having to updating the command hierarchy each
> time you create a new file to issues like integration with other PHP
> applications.''
>
> ...which seems like nonsense to me. If you /must/ access code that
> is incompatible with a front controller (for some reason) nothing
> stops you from doing so. You lose the front controller's facilities
> in the process - but the alternative is not having them at all in
> the first place - so in practice little is lost.
page controllers. There is nothing that can be done in a front controller
that cannot be done in separate page controllers.
Who says?> Storing your code in a filing system is a bit backwards - since
> you have to do independent version control, history tracking,
> backups, permission handling and updates.
>
> Everything should go into a database.
Just because Microsoft say something does not mean that it is a good idea.> Microsoft realised this - with WinFS:
>
> [url]http://msdn.microsoft.com/Longhorn/understanding/pillars/WinFS/default.aspx[/url]
>
> ...but have yet to pull it off.
--
Tony Marston
[url]http://www.tonymarston.net[/url]
Tony Marston Guest
-
Henk Verhoeven #7
Re: PHP Design tools? IDE?
Hi grz,
This is a lot of questions/ideas/requirements. We have developed an open
source framework for development of web based applications. It is called
phpPeanuts. It seems to be close to some of your ideas but quite far
from others. This has to do with design choices we made. I will begin
with the similarities, then go into the differences.
Something like that yes:> I can also envision a design where, even if the website contains
> a huge number of pages and different functions,
> there would actually only be a single PHP-script "index.php"
> and all sub-pages are generated on-the-fly, from arguments
> in the URL, i.e. all URLs simply looking like:
>
> index.php?pageid=1
> index.php?pageid=2
> ...
> index.php?pageid=productlist
> index.php?pageid=registration
index.php?pntType=Product&pntHandler=EditDetailsPa ge&id=1
The index.php script will give you a form for editing the Product with
id = 1. Or more precise, it will probably include the file that contains
the class ObjectEditDetailsPage, instantiate it and forward it the
request*. ObectEditDetailsPage will use its inherited function
getRequestedObject() to obtain an instance of the class Product with id
= 1, and generate and output a form for displaying and editing its
properties. The form may be generated entirely from metadata. No need to
have a database with forms. No boring designing forms for Product,
Customer, Order, Shipment and all those other types you need. Just one
single generic site design. Then if you specify the metadata in the
Product class, the rest done is automaticly.
As you see our aproach is object oriented. This means that we do not
have a big pile of functions in which an engine is implemented, that
processes passive data from a database. We rather have an assembly of
objects that cooperate to do the work. Objects combine functions and
data. This makes them much more flexible then just trying to represent
the entire website desing in data (like your design seems to do) or in
functions (like standard php scripting tends to do).
With object orientation it is possible to offer the developer a default
user interface for his application, and at the same time to allow the
developer to specialize allmost any aspect of both the engine and the
design by creating subclasses and overriding some methods. Because the
methods are written in php, he can put in any code he likes, so he is
not limited to what the existing engine can do.
Like with most traditional IDE's, the user interface is composed from
objects, like listboxes, tables, buttons, dialogs, etc. Only the
phpPeanuts objects do not exist in the client PC and draw on the screen,
but rather exist on the server, process requests and output HTML. For
lists of user interfacing classes by category see
[url]http://www.phppeanuts.org/site/index_php/HcodePackage/pnt.web/web.html[/url]
Of course there is still a need for a place to put pieces of HTML that
hold parts of the design. We could have stored them in the database, or
use a template enigine, but we chose 'the simpelest thing that could
possibly work': php include files. These have the advantage that you can
include pieces of php to call methods. See
[url]http://www.phppeanuts.org/site/index_php/Pagina/26/principle.html[/url]
for how all this fits together.
But if you like it better to have a database, be my guest: make some
subclasses, override the methods that currently do the inclusion and
fetch and interpret your design data from there... (actually you may hit
a design limitation here, or maybe it has already been solved. Anyhow,
if you explain how our design limits you you to specilize the framework
in the way you need to, we will be happy see if we can make the
necessary adaptations)
We do in specific situations support event handler methods. However,> and you can code "event" pieces of code
> that will react to clicks, buttons and user-actions like
> in the traditional IDE:s.
http works with url's, requests and pages that are returned. So our user
interfacing framework focusses on handling requests and composing pages
and forms. Only where the composition needs to be specialized in
repeated details you will need to implement event handler methods.
Otherwise it is a matter of specializing classes that becuase they exist
override the defaults and override methods.
We do not support IDE style WYSIWYG graphically editing a user
interface. In an earlier version of the framework (in Java) we had an
template technique for this, but even with dreamweaver it proved to be a
lot of work to manually desing the user interface of a substantial
application. The problem was a lack of abstraction. The result wass lots
of replication, little reuse. We tried to make our objects editable with
dreamweaver, but that was too cumbersome. Existing WYSIWYG editors
simply could not cope with the dynamics of objects. (For some reason
none of them supported the JavaBeans standard the way IDE's do).
It would still be nice to have a way to WYSIWIG edit the bits and pieces
of html the design is composed from. Preferably i would have that in the
browser, as part of the working application. But building that is a huge
effort, and the more we can reuse pieces of design, the less we can
gain from it. But if anyone has substantial leftover money i would be
happy to look into it ;-)
I guess this is the basic difference between traditional IDE's and
phpPeanuts: IDE's try to facilitate graphical designing and coding. We
build components and try to faciltate their reuse. The more you can
reuse, the less design and code you need for the same end user function.
We believe that in the long run this gives a higer productivity then
traditional IDE's and results in more flexible applications, in the
sense of easyer to adapt to new or changing requirements.
Greetings,
Henk Verhoeven,
[url]www.phpPeanuts.org[/url].
* The mapping of urls to objects is called Request Dispatch and it is
acutally a bit more complicated, see
[url]http://www.phppeanuts.org/site/index_php/Pagina/25/request+dispatch.html[/url]
Henk Verhoeven Guest
-
Tim Tyler #8
Re: PHP Design tools? IDE?
Tony Marston <tony@nospam.demon.co.uk> wrote or quoted:
> "Tim Tyler" <tim@tt1lock.org> wrote in message news:I59pBA.1pM@bath.ac.uk...> > grz02 <grz01@spray.se> wrote or quoted:You are complaining about the performance cost of reading a file like:>> >> >> I can also envision a design where, even if the website contains
> >> a huge number of pages and different functions,
> >> there would actually only be a single PHP-script "index.php"
> >> and all sub-pages are generated on-the-fly, from arguments
> >> in the URL, i.e. all URLs simply looking like:
> >>
> >> index.php?pageid=1
> >> index.php?pageid=2
> >> ...
> >> index.php?pageid=productlist
> >> index.php?pageid=registration
> >> index.php?pageid=loginform
> >> index.php?pageid=contactform
> >>
> >> etc...
> >>
> >> The index.php startfile might only look something like:
> >>
> >> <html>
> >> <php?
> >> include("lib.php");
> >> main();
> >> ?>
> >> </html>
> > That's called a "front controller".
> >
> > [url]http://www.phppatterns.com/index.php/article/articleview/81/1/1/[/url]
> >
> > ...is an article about front controllers in PHP.
> >
> > It is good - but AFAICS, the arguments given against front controllers
> > in it are hogwash.
> No they're not. IMHO they are perfectly sound. Front controllers were
> designed for languages such as Java which have web servers which behave
> differently to Apache. With Apache you can have a URL that says
> [url]www.site.com/page256.php?arg1=foo&arg2=bar[/url] and it will go straight to the
> requseted page. Using [url]www.site.com/index.php?page=256&arg1=foo&arg2=bar[/url]
> means that everything has to go through index.php first, and index.php must
> then contain code to redirect to page256.php.
<php?
include("lib.php");
main();
?>
....from the server?
For those anal about performance, that seems to be more than compensated
for by the lack of a need to include:
include("header.php");
....
include("footer.php");
....in every single page - and besides, that file should get cached and
ought to take practically no time to read.
When index.php looks like:> Not only is this an unecessary overhead, it also means that every time
> you change your application you must remember to update index.php.
<php?
include("lib.php");
main();
?>
....?
How does that need updating?
--
__________
|im |yler [url]http://timtyler.org/[/url] [email]tim@tt1lock.org[/email] Remove lock to reply.
Tim Tyler Guest
-
grz02 #9
Re: PHP Design tools? IDE?
Great thanks to all who responded!
Was very interesting reading for me with
discussion, links and thought-food....
Just some clarification...
No, that wasnt what I meant. There would be no scriptfile, page256.php, at all.>With Apache you can have a URL that says
>[url]www.site.com/page256.php?arg1=foo&arg2=bar[/url] and it will go straight to the
>requseted page. Using [url]www.site.com/index.php?page=256&arg1=foo&arg2=bar[/url]
>means that everything has to go through index.php first, and index.php must
>then contain code to redirect to page256.php. Not only is this an unecessary
>overhead, it also means that every time you change your application you must
>remember to update index.php.
My idea was that the whole HTML-page would be generated on-the-fly
by the "engine" from the URL-arguments and the db-contents,
where you can store both the site-contents, and style information.
Some performance penalty, of course, to generate everything on the fly,
but if you dont expect the trafficload to be much of a concern...
I guess my basic attraction to this approach, is that once the engine is
debugged and working, you shouldnt have to change the code very often
-- but maybe I am dreaming again, perhaps :)
The database, consisting of something like one set of tables for the contents,
and another set of table for design-parameters, styles, etc,
and mappings between them
would then be more flexible and easier to maintain,
than a growing set of scriptfiles with a mix of HTML,
PHP, CSS and db-calls in them.
Of course, the main challenge of this approach, however, is how to design the
database in a good way, to allow you to FULLY DESCRIBE your whole site.
But I was actually having the idea (or dreaming) that somebody most likely
already had done all that work, and released it as a useful product.
Well... kind of... but a very simple special-case,>... Imho, a file system is a database.
something like a db with only one table in it:
create table filesys
(
directory char(1024),
filename char(256)),
filecontent blob
);
I figure, however, there must be something more to db:es than this,
both from my personal experience, plus I heard they have become pretty
popular gadgets in today's business world, too ;)
Regards,
grz02 Guest
-
Joep #10
Re: PHP Design tools? IDE?
Very interesting, especially when considering maintainability. I would like
to have the information on one hand and layout on the other without
cluttering up my fs. Nice ideas!
Joep Guest
-
Christian Fersch #11
Re: PHP Design tools? IDE?
grz02 wrote:
That is useless. Of course it could be done, but it a lot more> I guess my basic attraction to this approach, is that once the engine is
> debugged and working, you shouldnt have to change the code very often
> -- but maybe I am dreaming again, perhaps :)
>
> The database, consisting of something like one set of tables for the contents,
> and another set of table for design-parameters, styles, etc,
> and mappings between them
> would then be more flexible and easier to maintain,
> than a growing set of scriptfiles with a mix of HTML,
> PHP, CSS and db-calls in them.
>
> Of course, the main challenge of this approach, however, is how to design the
> database in a good way, to allow you to FULLY DESCRIBE your whole site.
>
> But I was actually having the idea (or dreaming) that somebody most likely
> already had done all that work, and released it as a useful product.
effective, to customize the script to the site, than having that big
overhead (not only in speed, but also in code-lines and debugging time)
of beeing able to create a _whole site_ dynamically.
And that exists - it's called a cms and there are thousands of that kind
out there.
I have one running myself:
[url]http://www.cyberpunkuniverse.de/sitemap.htm[/url]
This wohle tree is stored in one database-table. I use some apache
tricks, to get those nice urls - the number-dir is the only interessting
part of the url, which is the id in my db-table.
I'm working on a modularity, so that the news and image galleries can be
put into that tree. Is this what you ment, or did I completely miss your
point?
Well, you can do everything with PCs. It is possible to write a script,> I figure, however, there must be something more to db:es than this,
> both from my personal experience, plus I heard they have become pretty
> popular gadgets in today's business world, too ;)
that will allow your whole website to be managned via web-interface
(even the design could be changed via web-interface), and a lot more,
but this just isn't worth the time writing it, for it can allready be
done. Maybe not as fast, but the time needed to write such a script
won't be compensated by that.
Greetings, Christian.
Christian Fersch Guest
-
Tony Marston #12
Re: PHP Design tools? IDE?
"Tim Tyler" <tim@tt1lock.org> wrote in message news:I5B2ww.My9@bath.ac.uk...I can achieve the functionality I require without header.php and footer.php.> Tony Marston <tony@nospam.demon.co.uk> wrote or quoted:>>> "Tim Tyler" <tim@tt1lock.org> wrote in message
>> news:I59pBA.1pM@bath.ac.uk...>> > grz02 <grz01@spray.se> wrote or quoted:>>>>> >> I can also envision a design where, even if the website contains
>> >> a huge number of pages and different functions,
>> >> there would actually only be a single PHP-script "index.php"
>> >> and all sub-pages are generated on-the-fly, from arguments
>> >> in the URL, i.e. all URLs simply looking like:
>> >>
>> >> index.php?pageid=1
>> >> index.php?pageid=2
>> >> ...
>> >> index.php?pageid=productlist
>> >> index.php?pageid=registration
>> >> index.php?pageid=loginform
>> >> index.php?pageid=contactform
>> >>
>> >> etc...
>> >>
>> >> The index.php startfile might only look something like:
>> >>
>> >> <html>
>> >> <php?
>> >> include("lib.php");
>> >> main();
>> >> ?>
>> >> </html>
>> >
>> > That's called a "front controller".
>> >
>> > [url]http://www.phppatterns.com/index.php/article/articleview/81/1/1/[/url]
>> >
>> > ...is an article about front controllers in PHP.
>> >
>> > It is good - but AFAICS, the arguments given against front controllers
>> > in it are hogwash.
>> No they're not. IMHO they are perfectly sound. Front controllers were
>> designed for languages such as Java which have web servers which behave
>> differently to Apache. With Apache you can have a URL that says
>> [url]www.site.com/page256.php?arg1=foo&arg2=bar[/url] and it will go straight to the
>> requseted page. Using [url]www.site.com/index.php?page=256&arg1=foo&arg2=bar[/url]
>> means that everything has to go through index.php first, and index.php
>> must
>> then contain code to redirect to page256.php.
> You are complaining about the performance cost of reading a file like:
>
> <php?
> include("lib.php");
> main();
> ?>
>
> ...from the server?
>
> For those anal about performance, that seems to be more than compensated
> for by the lack of a need to include:
>
> include("header.php");
> ...
> include("footer.php");
>
> ...in every single page - and besides, that file should get cached and
> ought to take practically no time to read.
If every request for a page starts off by going through index.php then it>>> Not only is this an unecessary overhead, it also means that every time
>> you change your application you must remember to update index.php.
> When index.php looks like:
>
> <php?
> include("lib.php");
> main();
> ?>
>
> ...?
>
> How does that need updating?
has to be redirected to the correct page, so index.php has to have knowledge
of every page in the system so it can redirect to that page. This means that
every time you add or remove a page you have to update index.php. In your
example the cross reference between request and script may exist in lib.php,
but that is the same difference - there is still a single place that needs
updating each time you change a page.
That's why I think front controllers are inferior to page controllers.
--
Tony Marston
[url]http://www.tonymarston.net[/url]
Tony Marston Guest
-
Tim Tyler #13
Re: PHP Design tools? IDE?
Tony Marston <tony@nospam.demon.co.uk> wrote or quoted:
> "Tim Tyler" <tim@tt1lock.org> wrote in message news:I5B2ww.My9@bath.ac.uk...This still seems like an anal performance niggle. Such issues are>> > You are complaining about the performance cost of reading a file like:
> >
> > <php?
> > include("lib.php");
> > main();
> > ?>
> >
> > ...from the server?
> >
> > For those anal about performance, that seems to be more than compensated
> > for by the lack of a need to include:
> >
> > include("header.php");
> > ...
> > include("footer.php");
> >
> > ...in every single page - and besides, that file should get cached and
> > ought to take practically no time to read.
> I can achieve the functionality I require without header.php and footer.php.
way below my threshold of what's important when designing sites.
What I care about are things like time-to-market and rapid development -
not whether it takes 433 or 440 ms to render a page.
You should not make a mess of your architecture for the sake of a
few milliseconds - that's called premature optimisation.
....or have access to that knowledge.>> >> >> Not only is this an unecessary overhead, it also means that every time
> >> you change your application you must remember to update index.php.
> > When index.php looks like:
> >
> > <php?
> > include("lib.php");
> > main();
> > ?>
> >
> > ...?
> >
> > How does that need updating?
> If every request for a page starts off by going through index.php then it
> has to be redirected to the correct page, so index.php has to have knowledge
> of every page in the system so it can redirect to that page.
No - not if it has access to the information. The information is> This means that every time you add or remove a page you have to update
> index.php.
presumably also stored in a database - and updates itself automatically
when new pages are created - so there need not be any maintenance
issue involved.
Creating a page involved modifying the database. That would automatically> In your example the cross reference between request and script may
> exist in lib.php, but that is the same difference - there is still a
> single place that needs updating each time you change a page.
update the list of available pages.
--
__________
|im |yler [url]http://timtyler.org/[/url] [email]tim@tt1lock.org[/email] Remove lock to reply.
Tim Tyler Guest
-
grz02 #14
Re: PHP Design tools? IDE?
Thanks Christian.
CMS here stands for what?
/grz
Christian Fersch <Chronial@web.de> wrote in message news:<ck8i9d$2m6$01$1@news.t-online.com>...
>Of course it could be done, but it a lot more
>effective, to customize the script to the site, than having that big
>overhead (not only in speed, but also in code-lines and debugging time)
>of beeing able to create a _whole site_ dynamically.>And that exists - it's called a cms and there are thousands of that kind
>out there.
>I have one running myself:
>[url]http://www.cyberpunkuniverse.de/sitemap.htm[/url]>This wohle tree is stored in one database-table.grz02 Guest
-
Christian Fersch #15
Re: PHP Design tools? IDE?
grz02 wrote:
Content Management System> Thanks Christian.
> CMS here stands for what?
[url]http://en.wikipedia.org/wiki/Content_management_system[/url]
geetings, Christian
Christian Fersch Guest
-
Henk Verhoeven #16
Re: PHP Design tools? IDE?
Hi grz,
This is a lot of questions/ideas/requirements. We have developed an open
source framework for development of web based applications. It is called
phpPeanuts. It seems to be close to some of your ideas but quite far
from others. This has to do with design choices we made. I will begin
with the similarities, then go into the differences.
Something like that yes:> I can also envision a design where, even if the website contains
> a huge number of pages and different functions,
> there would actually only be a single PHP-script "index.php"
> and all sub-pages are generated on-the-fly, from arguments
> in the URL, i.e. all URLs simply looking like:
>
> index.php?pageid=1
> index.php?pageid=2
> ...
> index.php?pageid=productlist
> index.php?pageid=registration
index.php?pntType=Product&pntHandler=EditDetailsPa ge&id=1
The index.php script will give you a form for editing the Product with
id = 1. Or more precise, it will probably include the file that contains
the class ObjectEditDetailsPage, instantiate it and forward it the
request*. ObectEditDetailsPage will use its inherited function
getRequestedObject() to obtain an instance of the class Product with id
= 1, and generate and output a form for displaying and editing its
properties. The form may be generated entirely from metadata. No need to
have a database with forms. No boring designing forms for Product,
Customer, Order, Shipment and all those other types you need. Just one
single generic site design. Then if you specify the metadata in the
Product class, the rest done is automaticly.
As you see our aproach is object oriented. This means that we do not
have a big pile of functions in which an engine is implemented, that
processes passive data from a database. We rather have an assembly of
objects that cooperate to do the work. Objects combine functions and
data. This makes them much more flexible then just trying to represent
the entire website desing in data (like your design seems to do) or in
functions (like standard php scripting tends to do).
With object orientation it is possible to offer the developer a default
user interface for his application, and at the same time to allow the
developer to specialize allmost any aspect of both the engine and the
design by creating subclasses and overriding some methods. Because the
methods are written in php, he can put in any code he likes, so he is
not limited to what the existing engine can do.
Like with most traditional IDE's, the user interface is composed from
objects, like listboxes, tables, buttons, dialogs, etc. Only the
phpPeanuts objects do not exist in the client PC and draw on the screen,
but rather exist on the server, process requests and output HTML. For
lists of user interfacing classes by category see
[url]http://www.phppeanuts.org/site/index_php/HcodePackage/pnt.web/web.html[/url]
Of course there is still a need for a place to put pieces of HTML that
hold parts of the design. We could have stored them in the database, or
use a template enigine, but we chose 'the simpelest thing that could
possibly work': php include files. These have the advantage that you can
include pieces of php to call methods. See
[url]http://www.phppeanuts.org/site/index_php/Pagina/26/principle.html[/url]
for how all this fits together.
But if you like it better to have a database, be my guest: make some
subclasses, override the methods that currently do the inclusion and
fetch and interpret your design data from there... (actually you may hit
a design limitation here, or maybe it has already been solved. Anyhow,
if you explain how our design limits you you to specilize the framework
in the way you need to, we will be happy see if we can make the
necessary adaptations)
We do in specific situations support event handler methods. However,> and you can code "event" pieces of code
> that will react to clicks, buttons and user-actions like
> in the traditional IDE:s.
http works with url's, requests and pages that are returned. So our user
interfacing framework focusses on handling requests and composing pages
and forms. Only where the composition needs to be specialized in
repeated details you will need to implement event handler methods.
Otherwise it is a matter of specializing classes that becuase they exist
override the defaults and override methods.
We do not support IDE style WYSIWYG graphically editing a user
interface. In an earlier version of the framework (in Java) we had an
template technique for this, but even with dreamweaver it proved to be a
lot of work to manually desing the user interface of a substantial
application. The problem was a lack of abstraction. The result wass lots
of replication, little reuse. We tried to make our objects editable with
dreamweaver, but that was too cumbersome. Existing WYSIWYG editors
simply could not cope with the dynamics of objects. (For some reason
none of them supported the JavaBeans standard the way IDE's do).
It would still be nice to have a way to WYSIWIG edit the bits and pieces
of html the design is composed from. Preferably i would have that in the
browser, as part of the working application. But building that is a huge
effort, and the more we can reuse pieces of design, the less we can gain
from it. But if anyone has substantial leftover money i would be happy
to look into it
I guess this is the basic difference between traditional IDE's and
phpPeanuts: IDE's try to facilitate graphical designing and coding. We
build components and try to faciltate their reuse. The more you can
reuse, the less design and code you need for the same end user function.
We believe that in the long run this gives a higer productivity then
traditional IDE's and results in more flexible applications, in the
sense of easyer to adapt to new or changing requirements.
Greetings,
Henk Verhoeven,
[url]www.phpPeanuts.org[/url].
* The mapping of urls to objects is called Request Dispatch and it is
acutally a bit more complicated, see
[url]http://www.phppeanuts.org/site/index_php/Pagina/25/request+dispatch.html[/url]
Henk Verhoeven Guest
-
Tony Marston #17
Re: PHP Design tools? IDE?
"Tim Tyler" <tim@tt1lock.org> wrote in message news:I5Bx9p.J51@bath.ac.uk...If you say that there is very little difference in performance between a> Tony Marston <tony@nospam.demon.co.uk> wrote or quoted:>>> "Tim Tyler" <tim@tt1lock.org> wrote in message
>> news:I5B2ww.My9@bath.ac.uk...>>>>> > You are complaining about the performance cost of reading a file like:
>> >
>> > <php?
>> > include("lib.php");
>> > main();
>> > ?>
>> >
>> > ...from the server?
>> >
>> > For those anal about performance, that seems to be more than
>> > compensated
>> > for by the lack of a need to include:
>> >
>> > include("header.php");
>> > ...
>> > include("footer.php");
>> >
>> > ...in every single page - and besides, that file should get cached and
>> > ought to take practically no time to read.
>> I can achieve the functionality I require without header.php and
>> footer.php.
> This still seems like an anal performance niggle. Such issues are
> way below my threshold of what's important when designing sites.
> What I care about are things like time-to-market and rapid development -
> not whether it takes 433 or 440 ms to render a page.
>
> You should not make a mess of your architecture for the sake of a
> few milliseconds - that's called premature optimisation.
single front controller and multiple page controllers, then why should I
switch from one to the other? My design works, it employs a lot of reusable
modules, it is flexible, so why should I change?
You like front controllers, I don't. I like page controllers, you don't. We
agree to disagree.
I have all my transaction details stored in a database, but I still don't>>>>> >> Not only is this an unecessary overhead, it also means that every time
>> >> you change your application you must remember to update index.php.
>> >
>> > When index.php looks like:
>> >
>> > <php?
>> > include("lib.php");
>> > main();
>> > ?>
>> >
>> > ...?
>> >
>> > How does that need updating?
>> If every request for a page starts off by going through index.php then it
>> has to be redirected to the correct page, so index.php has to have
>> knowledge
>> of every page in the system so it can redirect to that page.
> ...or have access to that knowledge.
>>>> This means that every time you add or remove a page you have to update
>> index.php.
> No - not if it has access to the information. The information is
> presumably also stored in a database - and updates itself automatically
> when new pages are created - so there need not be any maintenance
> issue involved.
>>>> In your example the cross reference between request and script may
>> exist in lib.php, but that is the same difference - there is still a
>> single place that needs updating each time you change a page.
> Creating a page involved modifying the database. That would automatically
> update the list of available pages.
need a front controller.
--
Tony Marston
[url]http://www.tonymarston.net[/url]
Tony Marston Guest
-
Tim Tyler #18
Re: PHP Design tools? IDE?
Tony Marston <tony@nospam.demon.co.uk> wrote or quoted:
> "Tim Tyler" <tim@tt1lock.org> wrote in message news:I5Bx9p.J51@bath.ac.uk...> > Tony Marston <tony@nospam.demon.co.uk> wrote or quoted:> >> "Tim Tyler" <tim@tt1lock.org> wrote in messageMy original point was that the arguments given against using>> >> >> > You are complaining about the performance cost of reading a file like:
> >> >
> >> > <php?
> >> > include("lib.php");
> >> > main();
> >> > ?>
> >> >
> >> > ...from the server?
> >> >
> >> > For those anal about performance, that seems to be more than
> >> > compensated for by the lack of a need to include:
> >> >
> >> > include("header.php");
> >> > ...
> >> > include("footer.php");
> >> >
> >> > ...in every single page - and besides, that file should get cached and
> >> > ought to take practically no time to read.
> >>
> >> I can achieve the functionality I require without header.php and
> >> footer.php.
> > This still seems like an anal performance niggle. Such issues are
> > way below my threshold of what's important when designing sites.
> > What I care about are things like time-to-market and rapid development -
> > not whether it takes 433 or 440 ms to render a page.
> >
> > You should not make a mess of your architecture for the sake of a
> > few milliseconds - that's called premature optimisation.
> If you say that there is very little difference in performance between a
> single front controller and multiple page controllers, then why should I
> switch from one to the other? My design works, it employs a lot of reusable
> modules, it is flexible, so why should I change?
front controllers in an online article were not very good.
Front controllers have their moments - and are often used by
CMS systems - which are deployed across multiple web sites -
and which thus treat whole web sites as being user data.
In such contexts, a front controller makes quite a bit of sense.
I'm not trying to convert you to liking front controllers -
if you say you don't like them.
--
__________
|im |yler [url]http://timtyler.org/[/url] [email]tim@tt1lock.org[/email] Remove lock to reply.
Tim Tyler Guest
-
Tony Marston #19
Re: PHP Design tools? IDE?
"Tim Tyler" <tim@tt1lock.org> wrote in message news:I5EvsA.HnL@bath.ac.uk...Understood. It's just that too many people say "you should use a front> Tony Marston <tony@nospam.demon.co.uk> wrote or quoted:>>> "Tim Tyler" <tim@tt1lock.org> wrote in message
>> news:I5Bx9p.J51@bath.ac.uk...>> > Tony Marston <tony@nospam.demon.co.uk> wrote or quoted:
>> >> "Tim Tyler" <tim@tt1lock.org> wrote in message>>>>> >> > You are complaining about the performance cost of reading a file
>> >> > like:
>> >> >
>> >> > <php?
>> >> > include("lib.php");
>> >> > main();
>> >> > ?>
>> >> >
>> >> > ...from the server?
>> >> >
>> >> > For those anal about performance, that seems to be more than
>> >> > compensated for by the lack of a need to include:
>> >> >
>> >> > include("header.php");
>> >> > ...
>> >> > include("footer.php");
>> >> >
>> >> > ...in every single page - and besides, that file should get cached
>> >> > and
>> >> > ought to take practically no time to read.
>> >>
>> >> I can achieve the functionality I require without header.php and
>> >> footer.php.
>> >
>> > This still seems like an anal performance niggle. Such issues are
>> > way below my threshold of what's important when designing sites.
>> > What I care about are things like time-to-market and rapid
>> > development -
>> > not whether it takes 433 or 440 ms to render a page.
>> >
>> > You should not make a mess of your architecture for the sake of a
>> > few milliseconds - that's called premature optimisation.
>> If you say that there is very little difference in performance between a
>> single front controller and multiple page controllers, then why should I
>> switch from one to the other? My design works, it employs a lot of
>> reusable
>> modules, it is flexible, so why should I change?
> My original point was that the arguments given against using
> front controllers in an online article were not very good.
>
> Front controllers have their moments - and are often used by
> CMS systems - which are deployed across multiple web sites -
> and which thus treat whole web sites as being user data.
> In such contexts, a front controller makes quite a bit of sense.
>
> I'm not trying to convert you to liking front controllers -
> if you say you don't like them.
controller because...", and when I look at their reasons I cannot see any
real justification, just opinion. I have seen documentation on why java
applications need front controllers, for example, but as I don't have the
same set of problems I certainly don't need the same set of solutions. A
front controller is just a means to an end, but it is not the only means.
--
Tony Marston
[url]http://www.tonymarston.net[/url]
Tony Marston Guest
-
NuSphere Customer Service #20
actually, PhpED is almost two times cheaper
Christian Fersch <Chronial@web.de> wrote in message news:<ck6n41$goo$04$1@news.t-online.com>...
Christian,> The best editor for windows is NuSphere's phpEd. But it costs 500$.
PhpED is $299, and the additional license is $50 only. You can get
more information about PhpED features and pricing options on our
website [url]http://www.nusphere.com/products/index.htm[/url]
Best regards,
NuSphere Corp.
NuSphere Customer Service Guest



Reply With Quote

