 | Can PHP use the mail() Function? | |
 | Yes. On both regular plans and ASP plans, PHP is able to use the mail() function to send out mail. |
|
 |
 | How can I have the server parse html files as if they were php? | |
 | This only applies to linux hosting accounts:Inside the directory with the html files, create a .htaccess file and inside, place the following |
|
 |
 | How do I set php.ini variables for my application? | |
 | Since we run PHP as CGI, you can create your own php.ini and place it beside your scripts. So simply create a blank file named php.ini and put the following inside: |
|
 |
 | Why can't I include a remote php file (ie include("http://domain.com/file.php"))? | |
 | Both including a PHP file and the ability to include a PHP file could have very high security risks for your site and the entire server. A hacker who gains access to your account through improp |
|
 |