answersLogoWhite

0


Best Answer

Yes php 4.4.7 server support php 5 files. But most of the php 5 features are not supported by php 4.4.7 version

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Will php 4.4.7 server support php 5 files?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Why you do not see any PHP code when you view the source code of a PHP page in the browser?

PHP is server-side, the browser itself does not interpret it. Rather, the browser sends a query to the server, and the PHP scripting generates custom HTML document. It is this HTML that you are seeing the source code of.


How do you call a template HTML file to another HTML file?

The best way is to use Server Side Includes. Your hosting provider must support this feature (most do) but there are a couple of variations on how to implement it. If you are using a linux/unix based host, then you would most likely use PHP to utilize server side includes. First you would have to rename your main files that use the templates to .php instead of .html There are a few ways to include files with PHP but my favorite is : Your content here (I like to start include files with i_ for consistency) There is another example in the link if this one gives you an trouble. The other way is ASP style includes for Windows based servers. The best way to accomplish this is: Your content here An additional way is to use an iFrame. <iframe src ="your_html_page.htm" width="100%" height="300"> <p>Your browser does not support iframes.</p> </iframe>


How is PHP code designated in a webpage?

PHP code is never executed by the web browser, and the source code of a PHP file will normally not be sent to the browser at all. In this sense, there is no designation of PHP code on the client's side-- it all appears to be HTML, text, XML, or whatever other type of output you choose to produce. On the server side, PHP scripts are inside of files ending in ".php". Script inside of these PHP files start with . Anything outside of these tags will be sent to the browser as static ("unchanging") output. The code inside the PHP tags start from the top, and are executed sequentially from top to bottom, unless flow control is used to modify the control of the scripts (such as functions, while loops, switch and if constructs, etc).


Why is PHP considered a scripting language and not a programming language?

PHP is a programming language, just like Perl, Python, JavaScript, Basic and many other interpreted language.Note: the PHP interpreter can be integrated into the webserver, or run standalone.


How can you embed a Java program in PHP webpage?

In the output stream (i.e. using echo), output an "embed" tag (or if using older HTML, the "applet" tag). Note that the Java will run on the client, not on the server, meaning that PHP variables, etc, will not be available to it.

Related questions

Does real player support php?

No it does not support PHP. PHP is a server side processing language while Real Player is a media player which playes audio and video files. Maybe it can play audio and video files located in php folder but that is limited to that.


How do you support PHP on a web server?

contact your service provider and ask them to enable it on your account for shared hosting and if its a dedicated server you will need to edit your apache files to load to php module and reload and restart apache hope this helps :D


Why you need wamp server to run php file on web browser?

PHP Web Development and Running PHP application requires a lots of efforts and tools. For running PHP file on web browser we required a compiler which can convert php files to HTML files. And a web server like Wamp helps a php file to convert it to PHP. Basic Component of WAMP Server are : Wnodows : Which is our OS. Apache : Web server for responding with web pages. MySql : Databases Query and PHP


Is tomcat server use for php?

In normal circumstances only apache server supports php scripts. There can be some tweaking done in tomcat to support php


How can you put PHP into your product details pages?

<?php // your php code goes here ?> If your product pages are created in PHP (have the .php extension) then you can simply add the php start/end tag. There is a way to have the server recognize PHP inside of HTML files but that would require some work on the server, better left to the server manager.


Does netscape support php?

PHP support is not up to the clients (browsers). If it runs on the server, then HTML is served to the client. PHP may have generated the HTML, but that does not matter to the client.


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.


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.


What is php is all about?

PHP is a server side programming language that also serves as a general purpose programming languages. What does I mean by Server Side? Well this means that the php source files are being run on the server as a opposed to the end user using their browser to run Javascript code which is a client-side scripting language. PHP allows for the creation of dynamic and interesting website design


When i click the php query button its asking to open or save?

Clearly, this is a case of the server not knowing what to do, so it treats it like any other file.To run PHP scripts, you will need to configure your server to handle PHP files through the php-cgi or phpexecutable. For Apache, this is accomplished by editing httpd.confAdd the following to the httpd.conf file:PHPIniDir ""LoadModule php5_module ""AddHandler application/x-httpd-php .php


What is the main use of php than other programming languages?

PHP is used mainly to help create dynamically generated website pages. It is a script language running on a server. PHP programs are not compiled as executable files.


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.