answersLogoWhite

0


Best Answer

A PHP file is not a media file, so winamp (and so any other media player) cannot play that file.

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do i play a PHP file in winamp player?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is php a binary file?

No, PHP is text file with .php extension.


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.


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

The file extension for PHP is .php


What is the Malay-utf-8.inc. php file?

This particular file is a file specific to the PHP program or script you are using. It is not a "php system file".


What is the file extension .php?

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


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.


What is the usual file name extension for PHP?

.php


How do you create a DIV type file using PHP?

A file with the DIV file extension is a DivX Movie file, it cannot be created with PHP. PHP is a web programming language for web site building.


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 convert an mp3 file in PHP?

PHP is a web page command file format, mp3 is an audio file format.So there is no conversion, as the PHP file leads you to the mp3 file location.


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 include a file in PHP?

To include a file in PHP all you need to do is use the include() function as I have shown you in the example below. <?php include("filename.php"); ?>