[PHP] ASP vs PHP

2002-03-28 Thread Ciro Martins


Hi!


I've been programming in PHP for long. But one question that always is
coming to my mind is to know if there exists some kind of tools (like
for SP. It exists a tool called ASPWebTools for wich it is possible to
develop applications written in ASP and connecting with DB like SQL
Server in an automatic way) that can help in the development of
applications using PHP and databases. For instance, that could allow to
develop automatically forms to connect to databases using PHP.

Does anyone know any related application or tools.
Because in ASP with that tool is more easy to develop code.

Thanks in advance

Ciro Martins


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] ASP vs PHP

2002-03-28 Thread J. Scott Johnson

I've seen a tool called Code Charge which claims to do that.

http://www.codecharge.com/index2.html

And, I think that the new Zend tools make this easier (but I really haven't
started evaluation yet).

www.zend.com

Scott

* * * * * * * * * * * * * * * * * * * * * * * * * *
J. Scott Johnson
PHP Consulting and Design Work
* * * * * * * * * * * * * * * * * * * * * * * * * *
Virtual:
* * * * * * * * * * * * * * * * * * * * * * * * * *
[EMAIL PROTECTED]
http://www.fuzzygroup.com/
Yahoo IM: fuzzygroup



-Original Message-
From: Ciro Martins [mailto:[EMAIL PROTECTED]]
Sent: Thursday, March 28, 2002 7:49 AM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: [PHP] ASP vs PHP



Hi!


I've been programming in PHP for long. But one question that always is
coming to my mind is to know if there exists some kind of tools (like
for SP. It exists a tool called ASPWebTools for wich it is possible to
develop applications written in ASP and connecting with DB like SQL
Server in an automatic way) that can help in the development of
applications using PHP and databases. For instance, that could allow to
develop automatically forms to connect to databases using PHP.

Does anyone know any related application or tools.
Because in ASP with that tool is more easy to develop code.

Thanks in advance

Ciro Martins


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] ASP vs PHP

2001-03-12 Thread Simon Garner

From: "Chris Anderson" [EMAIL PROTECTED]

 This is going to sound like heresy, but is there any way to
 use ASP and PHP in the same fle/page? Seperated of course.


What if you put:

!--#include virtual="path/to/file.php"--

in your ASP page?





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] ASP vs PHP

2001-03-12 Thread Michael Kimsal



Carsten Gehling wrote:


  Are you sure? The #include is an SSI directive, not ASP. It should create
 a
  separate internal HTTP request for the included file. I know for sure that
  for example you can include a JScript ASP page inside a VBScript ASP page
  like this - although I realise that's not the same difference as ASP/PHP.

 You're right about that, but AFAIK ASP will simply not allow two different
 serverside script languages on the same page (which it becomes once the
 inclusion is complete). You must state your @language=... directive as the
 first ASP statement after which it cannot be changed.

 Unless of course you use:

 script runat=server language=vbscript
 ... your code here
 /script

 script runat=server language=jscript
 ... your code here
 /script

 Don't know if that will work though.

 - Carsten

Yes it will work.  we've used it in the past to do millisecond timing - had to
use jscript for that because vbscript internals don't have any timer mechanism
that accurate, but jscript did.  it's the same computer, same OS, but each
language
had different capabilities.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] ASP vs PHP

2001-03-11 Thread Michael Kimsal

You're comparing a framework to a language.

ASP is a technology which allows code for different languages to be embedded in a file
parsed by a webserver (IIS).  To accomplish this, different languages need to be 
written
as modules for that webserver.  MS has VBScript (default language), JScript and 
PerlScript
(anyone know of any more?).  If someone was to write PHP to be an ASP/IIS module
that could be executed under the ASP framework, then yes.  Until then, no.  I also
don't think it's a likely scenario, but I've been wrong many times before in my life.  
:)



Chris Anderson wrote:

 This is going to sound like heresy, but is there any way to use ASP and PHP in the 
same fle/page? Seperated of course.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] ASP vs PHP

2001-03-11 Thread Steve Edberg

At 11:48 PM -0500 3/11/01, Rick St Jean wrote:
I was told by someone that it is possible with apache.  You can have 
something parse
the page once then be parsed by something else.  I don't know how 
and I have never seen
it but I have been told that it is possible.

Rick


That would be 'stacked request handlers'...not possible, AFAIK, with 
any of the 1.x versions, but supposedly Apache 2.0 can do it. Check 
out httpd.apache.org; v2.0 is still alpha.

- steve



At 11:28 PM 3/11/01 -0500, Michael Kimsal wrote:
You're comparing a framework to a language.

ASP is a technology which allows code for different languages to be 
embedded in a file
parsed by a webserver (IIS).  To accomplish this, different 
languages need to be written
as modules for that webserver.  MS has VBScript (default language), 
JScript and PerlScript
(anyone know of any more?).  If someone was to write PHP to be an 
ASP/IIS module
that could be executed under the ASP framework, then yes.  Until 
then, no.  I also
don't think it's a likely scenario, but I've been wrong many times 
before in my life.  :)



Chris Anderson wrote:

  This is going to sound like heresy, but is there any way to use 
ASP and PHP in the same fle/page? Seperated of course.


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

##
#  Rick St Jean,
#  [EMAIL PROTECTED]
#  President of Design Shark,
#  http://www.designshark.com/
#  Quick Contact:  http://www.designshark.com/messaging.ihtml
#  Tel: 905-684-2952
##



-- 
+--- "They've got a cherry pie there, that'll kill ya" --+
| Steve Edberg   University of California, Davis |
| [EMAIL PROTECTED]   Computer Consultant |
| http://aesric.ucdavis.edu/  http://pgfsun.ucdavis.edu/ |
+-- FBI Special Agent Dale Cooper ---+

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]