answersLogoWhite

0


Best Answer

All you need is a text editor, such as "notepad". When you save a document, you simply add an extension - for example ".php" - to the end of the filename and make sure that the file type selected is "all files" ("*.*").

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you create documents like configuration php?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Accounting

How can you use Crystal Reports in PHP?

In order to use Crystal Reports with PHP you need to be running PHP on a Windows server because Crystal Reports is a windows application. Most places will not let this be installed on a shared server but if you have a dedicated server or vps, at a place like hostmysite.com, you will be able to install the crystal reports software. Here is the syntax you will use to create report with Crystal Reports on a windows server: $cr=new com("Crystal.CRPE.Application") or die("cannot load cr com"); $rn="F:\notes5\test.rpt"; $rap=$cr->OpenReport($rn);


Is Microsoft Access compatible with PHP?

Yes. PHP supports an API called ODBC that allows it to interact with Microsoft Access databases.


How do you use an Access database with PHP?

Something I never thought about doing before, but this is possible.First, you must make sure that your PHP installation has ODBC capabilities. If it does not. see http://php.net/odbcYou must use PHP's ODBC commands. I have never worked with these, you I cannot help you any further. I would recommend a mySQL database. It's simpler and more widely used in the field of web design. I could help you with that instead.


What are the benefits of using Zen Cart?

Zend Framework is an open source, object-oriented web application framework implemented in PHP 5 and licensed under the New BSD License.In the domain of computerized business notwithstanding finding a correct web advancement stage is very overwhelming. Zend, out of the various PHP stages, emerges from the rest as a result of its wide range of helpful functionalities. This system provides food a total simplicity to the engineers as it empowers to utilize their own style of coding rather than a pre-characterized coding stands. In addition, with this system, you can get a gigantic arrangement of supporting PHP programming libraries.Zend Framework is an open source, protest situated web application system executed in PHP 5 and authorized under the New BSD License. The system is fundamentally an accumulation of expert PHP based bundles.For more information visit : lewinbrayles.doodlekit.com


Do companies pay tax for exporting?

yes, http://internationalecon.com/Trade/Tch10/T10-4.php Josh Harmatz Voyage Financial

Related questions

What line is added to the Apache configuration file to ensure that PHP extensions are recognized?

Adding the following lines to the Apache 2.x configuration file will associate .php files with PHP, given the PHP 5 module (DLL file) is also loaded through the configuration: <FilesMatch \.php$> SetHandler application/x-httpd-php </FilesMatch>


How do you create a PHP script?

To create a PHP script all you have to do is create a new file, then save the file as "filename.php". It must have a .php file extension.After that open the file and put in the PHP tags like shown.Then you write your PHP script within those tags and upload to your web space and check it out.


How do you create a function in HTML?

You don't. You can only create it in Scripting languages like Javascript or Server Side languages like PHP.


How do you install crystal reports for php?

how to create report in php


How do you create an area of a webpage to display PHP results?

PHP code blocks start with <?php and end with ?>.


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

Maybe try mySQL or PHP?


Where can one find PHP documents?

You can find PHP documentation on the official PHP website at php.net. The website has comprehensive documentation on PHP functions, classes, and features, as well as user-contributed notes and examples.


How does a web server determine whether a requested document includes PHP code?

Web server passes the requested document to PHP interpreter, which validates and processes PHP code in it, then the server reads the response from PHP interpreter and returns the resulting response to client.For an instance, Apache HTTPD uses instructions such as AddType, to know how to process various documents, basing on their extensions (the following example is common and may require changes depending on Apache HTTPD and PHP configuration):AddType application/x-httpd-php .php .p8p .txtThis directive instructs Apache HTTPD to let PHP process files which are suffixed with .php, .p8p or .txt, thus files such as index.php, Homepage.p8p and Settings.txt will be processed by PHP.


Why do we use Php?

PHP is an Open Source Scripting Language. We can create Web Pages and Web Applications using PHP.


What is php image size?

PHP can create images of different sizes. It depends on a particular image.


How do you create a text editor in PHP?

Well it got nothing to do with PHP, you going to need JavaScript to do that :)


How can you check whether your PHP installation has got IMAP support?

It's probably in the php.ini file, you can also have a look at the current configuration of your PHP by running a file on the webserver with the following code: <?php phpinfo(); ?> goodluck