Answers for "what is php file"

PHP
6

what php can do

PHP can generate dynamic page content.
PHP can create, open, read, write, delete, and close files on the server.
PHP can collect form data.
PHP can send and receive cookies.
PHP can add, delete, modify data in your database.
PHP can be used to control user-access.
PHP can encrypt data and apply validation.
PHP used to send and receive E-Mails.
PHP can be used to integrate with other third party tools.
PHP can output images, PDF files, and even Flash movies. You can also output any text, such as XHTML and XML.
Posted by: Guest on November-09-2020
2

php files

<html>

   <head>
      <title>Reading a file using PHP</title>
   </head>
   
   <body>
      
      <?php
         $filename = "tmp.txt";
         $file = fopen( $filename, "r" );
         
         if( $file == false ) {
            echo ( "Error in opening file" );
            exit();
         }
         
         $filesize = filesize( $filename );
         $filetext = fread( $file, $filesize );
         fclose( $file );
         
         echo ( "File size : $filesize bytes" );
         echo ( "<pre>$filetext</pre>" );
      ?>
      
   </body>
</html>
Posted by: Guest on July-16-2020
5

PHP full form

PHP is an acronym for "PHP: Hypertext Preprocessor" PHP is a widely-used, open source scripting language. PHP scripts are executed on the server.
Posted by: Guest on August-17-2020
0

.php file

<html>

   <head>
      <title>Reading a file using PHP</title>
   </head>
   
   <body>
      
      <?php
         $filename = "abc.txt";
         $file = fopen( $filename, "r" );
         
         if( $file == false ) {
            echo ( "Error in opening file" );
            exit();
         }
         
         $filesize = filesize( $filename );
         $filetext = fread( $file, $filesize );
         fclose( $file );
         
         echo ( "File size : $filesize bytes" );
         echo ( "<pre>$filetext</pre>" );
      ?>
      
   </body>
</html>
        //This is a php File Yes!!!!!
Posted by: Guest on October-08-2020
0

what is php

PHP stood for Personal Home Page now it stands for Hypertext Pre-processor.
PHP is an open-source, interpreted, and object-oriented scripting language that can be executed at the server-side. 
PHP is well suited for web development. Therefore, it is used to develop web applications (an application that executes on the server and generates the dynamic page).
PHP was created by Rasmus Lerdorf in 1994 but appeared in the market in 1995.Most of PHP syntax is based on C. It is used to manage dynamic content, databases, session tracking, even build entire e-commerce sites.
PHP is powerful enough to be at the core of the biggest blogging system on the web (WordPress)!
PHP is deep enough to run the largest social network (Facebook)!
PHP is also easy enough to be a beginner's first server side language!
Posted by: Guest on November-08-2020
0

what is php file

PHP files can contain text, HTML, CSS, JavaScript, and PHP code.
PHP code is executed on the server, and the result is returned to the browser as plain HTML.
PHP files have extension ".php
Posted by: Guest on November-10-2020

Browse Popular Code Answers by Language