Author |
Topic  |
|
muzishun
Senior Member
   
United States
1079 Posts |
Posted - 24 September 2005 : 00:41:44
|
I'm trying to get into PHP a little bit, and I want to find a script similar to an ASP one I found awhile back. Basically, the script tested a bunch of common ASP components, check for ASP.NET availability, etc, then returned the data on which components were installed, what versions they were, and all that jazz.
Does anyone know where I can get a similar script for PHP? I know PHP has similar things to components, and have no idea how to go about knowing what my server supports.
Thanks. |
Bill Parrott Senior Web Programmer, University of Kansas Co-Owner and Code Monkey, Eternal Second Designs (www.eternalsecond.com) Personal Website (www.chimericdream.com) |
|
Classicmotorcycling
Development Team Leader
    
Australia
2085 Posts |
Posted - 24 September 2005 : 00:53:25
|
The script you need is as follows:
<?php
phpinfo();
?> I hope that helps. |
Cheers, David Greening |
 |
|
sr_erick
Senior Member
   
USA
1318 Posts |
|
muzishun
Senior Member
   
United States
1079 Posts |
Posted - 24 September 2005 : 01:16:12
|
Wow. I find that to be phenomenally difficult to implement. Could you give me some documentation on it?
Seriously, though. I didn't realize it would be that simple. Thanks. |
Bill Parrott Senior Web Programmer, University of Kansas Co-Owner and Code Monkey, Eternal Second Designs (www.eternalsecond.com) Personal Website (www.chimericdream.com) |
 |
|
Classicmotorcycling
Development Team Leader
    
Australia
2085 Posts |
Posted - 24 September 2005 : 03:11:18
|
Any time.  |
Cheers, David Greening |
 |
|
|
Topic  |
|