Link to home
Start Free TrialLog in
Avatar of leoleo
leoleo

asked on

Basic PHP

I'd like to know a few basic things regarding PHP. I know they must be available in the Net... but don't want to go searching for it.

- What exactly is PHP?
- What are the advantages/disadvantages fo PHP when compared to other server side scripts?
- If PHP scripts are inserted between HTML tags, will there be extra load on the server (as in the case of SSI)?
- Which is the latest version of PHP?
- Do we have to install a PHP interpreter in Apache server?
- How to use PostgreSQL with PHP? If I have PSQL already installed in my server, do I have to change anything if I install PHP also?

All comments welcome.
Thanks indeed.
ASKER CERTIFIED SOLUTION
Avatar of us111
us111
Flag of Luxembourg image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
oops the lastest version of PHP is 3.0.15
what's PHP?

Good documentation
http://www.zend.com/zend/aboutphp.php
Avatar of jasmoft146
jasmoft146

The 4.0 betas are solid, and there is an optimizer by zend for the latest version b 4.4 p 1  Also PHP is like perl and java working together (add in some C++ for spice) and all working on a webserver.  One of the major pros of php is that no one can steal your source!
Avatar of leoleo

ASKER


Thanks indeed, us111. That was really helpful.

jasmoft146 : Why do u say that no one can steal the source? More secure than CGI ?

Well everything is processed, and none of the source is shown.
yes it's called a server-side scripting language


>                   - What exactly is PHP?

      PHP is very powerful scripting language, robust and with very good support, like ASP or JSP or ColdFusion.

>                   - What are the advantages/disadvantages fo PHP when >                   compared to other server side scripts?

     Fast (especially PHP4), simple to learn (especially for Perl-aware users), support tremendous amount of libraries, including grafics, most databases, XML, pdf , etc,etc,etc.

>                   - If PHP scripts are inserted between HTML tags, will there be >                   extra load on the server (as in the case of SSI)?

      Yes.

>                   - Which is the latest version of PHP?
         PHP3 (stable) 3.0.15
         PHP4 (development) beta4 patch level 1

>                   - Do we have to install a PHP interpreter in Apache server?

       No, you can use PHP  as a CGI - so use it in any web server that supports CGI. Including Win32 platform. Apache IMO best choice ;-)

>                   - How to use PostgreSQL with PHP? If I have PSQL already >                 installed in my server, do I have to change anything if
>                   I install PHP also?
 
      You don't need to change anything. Just install PHP with Postgress support and enjoy.
Avatar of leoleo

ASKER

maxkir
: U say there is extra load, while us111 says there isn't... which is right?
Well, when you make any dynamic content, this takes some processor's time on the server, isn't it ? This is true for any server-side scripting language.

us111 meant probably that there is no extra load for the client machine ..
yes I mean there's no extra load for the client
Avatar of leoleo

ASKER


Thanks, maxkir & us111.
(Too bad there isn't a 50-50 option in EE !!!)
Sorry maxkir
never mind ;-))))