 PHP,
ASP & WAP
1.
2.
3.
4.
5.
6.
7. 1. What version of ASP does mickwood.com have installed
on it's servers? We are running Chilisoft ASP version 3.6.2.34 . We have the components Chili!Mail,
Chili!POP3, Chili!Upload , and Chili!Beans enabled.  2. What suffix do I need on the end of my ASP files? In order to run ASP (Active Server Pages) files you will need to put a .asp
or .asa on the end of every ASP file so the ASP server knows to parse the file.  3. What suffix do I need on the end of my PHP files? In order to run PHP (Hypertext Preprocessor) files you will need to put a .php
or .php4 on the end of every PHP file so the php server knows to parse the file.  4. How do I connect to my MySQL database with ASP? Here is some sample code for connecting to a database via a DSN-less connection:
connect_string = "Driver={Mysql}; Server=localhost; Database=mydatabase;
UID=myuser; PWD=secret"  5. Where can I find information about creating ASP
scripts? Information regarding the ASP server can be found in the Chilisoft ASP manual
at http://216.163.88.13/caspdoc/362docs/
 6. What version of PHP does mickwood.com have installed? PHP4 with Zend Optimizer.  7. How do I execute a CGI script inside a PHP file? To execute a CGI script inside a PHP file put the following inside your PHP
script: include (/path_to_cgi_file)  |