answersLogoWhite

0

We can write php extension is many way...

.php , .php5, .php4

User Avatar

Wiki User

10y ago

What else can I help you with?

Related Questions

What is the file extension .php?

A file whose extension is "*.php" are typically interpreted by the PHP language. (php.net)


What is the default extension that most Web servers use to process php scripts?

When processing PHP scripts, web servers most frequently use the.php extension by default. This implies that a web server will recognize and run PHP code when it comes across a file with the.php extension.


What file extension is used to save a php file after code has been written into it?

The file extension for PHP is .php


Is php a binary file?

No, PHP is text file with .php extension.


What is the usual file name extension for PHP?

.php


What files can contain PHP?

PHP code can be stored in any kind of file -- the extension of the file indicates what said file contains, but may not necessarily be true. The "php" extension is used to indicate PHP which is meant for execution and presentation.


How do you get PHP codes for writing on an image?

You can use the GD extension for PHP to edit image files.


What is tpl in php?

.tpl is a file extension used by Smarty.


What is the file extension for a web form page?

.htm, .html or .php


What is the naming extension for a webpage?

with just plain HTML its .HTML, but if you want to use a server side language like php it will be .php


What is the difference between php php3 and phtml?

PHP, PHP3, and PHTML refer to different versions and contexts of the PHP programming language. PHP is the current and widely used version, while PHP3 is an older version that introduced many features but is no longer supported. PHTML is a file extension typically used for PHP files, indicating that the file contains PHP code, while .php is the more common extension today. In summary, the key differences lie in versioning and file naming conventions.


What is meant by PHP build is missing curl extension?

This means that the curl (Client URL) module is missing or has not been enabled.First - check your PHP extension folder for the curl module file (php_curl.dll in Windows). If it's missing, download it (a quick google search should reveal several places to retrieve the file) and place it in your PHP extension folde.Next, open your PHP.ini file and find the line:;extension=php_curl.dll... then remove the ;extension=php_curl.dllRestart apache and you should be right to go.Hope that helps.