answersLogoWhite

0

What is PHP enabled host?

Updated: 8/16/2019
User Avatar

Wiki User

15y ago

Best Answer

A host that allows you to write in PHP

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is PHP enabled host?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Does Google Chrome have PHP module enabled?

Yes, Chrome has PHP module enabled. It can be used for testing and developing PHP websites.


Can you open php file in your PC?

Since a PHP file basically is a text file, yes. But beware - opening and running a PHP file are not the same. If you want to run a PHP file, you will need a webserver with PHP module enabled.


Where can one go to get php info?

You can get information relating to PHP files online at websites such as Blue Host Forum and PHP. You can also find more information relating to the PHP file type at its associated Wikipedia page.


How do you edit a PHP file?

Open it in Notepad. Add or remove whatever code you want. To test, you will have to upload it to a PHP enabled webhost, or you will need to install MySQL, PHP, and Apache on your computer. Use Editor to edit the PHP file. Example: Notepad++ , editplus ,Zend IDE ,Netbeans IDE


Why does your browser try to save rather than open your PHP scripts?

PHP is a server-side scripting language, which means that scripts are interpreted and executed by the server before PHP pages are sent to the client (the browser). The server replaces PHP scripts with the output it obtains from their execution and then transmits to the client the output thus obtained. Hence, your browser cannot execute PHP scripts, but it can only request PHP pages from a server which runs the scripts. Because the server is what processes the script, PHP needs to be installed on the server for the server to be able to process PHP scripts. If PHP isn't installed, the server has no idea that "foo.php" is a PHP script so just sends it to the browser as an executable - in a way that forces the browser to prompt to download it. Consult your hosting provider's help for installing, setting up or enabling PHP. Alternatively, you can install it yourself if your host provides the permissions to (See the related questions for installation help). If your host does not provide PHP support, find another host.


How can you create a website without using a host like Shutterfly?

Maybe try mySQL or PHP?


What host do you use when your MySQL database is on a separate server to your PHP scripts?

For the host you need to put the IP address of the MySQL server instead of localhost.


How do you write homepage module in php?

A home page can be any php script. The most common used name for the 'home page' is the file called index.php in the public_html folder of your web host.


How do you connect odbc to php?

Syntax: odbc_connect(string datasource, string username, string password); <?php $host = "localhost"; // The host name varies $user = "root"; // Username also varies in db $pwd = ""; // Password varies in db $connect = odbc_connect($host,$user,$pwd); if(!$connect) { die("Could not establish connection to odbc database"); } ?>


What do you need to host a PHP site?

The basics required to host a web site written in PHP (commonly):A serverA Linux OSApache http webserverPHPThis would be the most used set up for a PHP web site, normally this would also include installing MySQL as a database server which would complete what is commonly referred to as a LAMP stack (Linux, Apache, MySQL, PHP).There is software and emulators available that will allow you to run PHP and many different types of servers including Windows and IIS, but the above is the most commonly accepted set up.


Which PHP string is used to output a date in ISO 8601 format?

ISO 8601 is an international standard for displaying dates and times in order to communicate them across language barriers. On webpages where PHP coding is enabled, the string ' will display the date in ISO 8601 format.


What is the best way to learn php?

Hands on is the best way to learn it. Get yourself a host or install a local Apache server and jump right in! Check out the related links for Video tutorials for beginning PHP development.