PHP Development With Oracle PT 2
PHP Development With Oracle PT 2
By Darun
Creating and Editing PHP Scripts
• There are a number of specialized PHP editors available, including
Oracle’s JDeveloper which can be configured with a PHP extension.
• PHP scripts often have the file extension .php, but sometimes
.phtml or .inc are also used.
• or multi-line:
Running PHP Scripts
• PHP scripts can be loaded in a browser, or executed at a
command prompt in a terminal window.
• The location of the file is system specific. Its location, the list
of extensions loaded, and the value of all the initialization
settings can be found using the phpinfo() function:
Running PHP Scripts