Conditional Rendering in React Complete Guide with Examples 2026

Image
  Conditional Rendering in React Conditional Rendering is one of the most useful concepts in React. It means showing different content on the screen depending on a condition. For example: If a user is logged in → show Logout If a user is not logged in → show Login If a student has passed → show Congratulations If a product is available → show Buy Now If data is loading → show Loading... React does not have a separate if rendering tag. Instead, we use normal JavaScript conditions such as if, the ternary operator, &&, and switch to decide what should appear in the UI.

PHP File Handling


What is the File Handling  in php

The term "file handling" refers to a group of procedures in PHP that enable read/write operations on disk files using PHP code. In PHP, a file is a resource object, from which data may be read or written to in a linear way.


 create a file 

" filehandling.txt" , stored the server data.

web desingning free of cost

learn programming language =webdesigningtheory.blogspot.com


    PHP Open file-fopen()

  Example  :-


<?php
      $file = fopen(" filehandling.txt","r");
    ?>

   
OUTPut :-

  web desingning free of cost

learn programming language =webdesigningtheory.blogspot.com


  ஃPHP Close File- fclose() 

PHP fclose() function use close open file pointer.

    Syntax :-

fclose(resource $handle)

Example :-


<?php
fclose($handle);
?>


  ஃ PHP Read File - fread()

PHP fread() function use to read content file. accept two argument.

   Example :-



<?php
   $file = fopen("filehandling.txt","r");
   $content = fread($file,filesize(filehandling.txt"));
   echo $content;
   fclose($file);
   ?>

   

  ஃ PHP  Write File - fwrite()

 Example  :-

 
 <?php
$file = fopen("filehandling.txt","w");
fwrite($file, "This is a test.");
fclose($file);
?>


  ஃ PHP Delete File- unlink()

   Example  :-


<?php
unlink ("data.txt");
echo "file delete";
?>

Related Post :-

php session

html drop down button

Comments

Popular posts from this blog

HTML Tag

CSS Text Color Explained with Syntax and HTML Examples

HTML Input Type Submit Syntax and Example