Questions and answers
PHP Language
How to use PHP 4 ?
Scripts with .php, .php3, or .php4 extension will run with PHP 4.
How to use PHP 5 ?
Scripts with .php5 extension will run with PHP 5.
How to obtain information about PHP configuration ?
You have just to crate a PHP script that contain <? phpinfo(); ?>.
Can I use a specific PHP configuration ?
Yes, but we will control it and you have to pay for this option. Send your request to the technical support.
Can I use file upload ?
Yes. Don't forget to use chmod() after upload to give file the desired rights.
Can I use mail() function ?
Yes. However, you must make safe your scripts and not carry out massive sendings via this function. In the event of problem, the function mail() could be decontaminated.