Menu
tech and non-tech tips
  • Home
  • General
  • Web Tips
    • Web development
    • PHP
    • zendframework
    • SocialEngine
    • SQL
    • javaScript
  • Internet
  • Free Web Tools
  • Contact Us
tech and non-tech tips
PHP coding

Reading and writing to files in PHP

Posted on 16th December 201916th December 2019 by Sijo Thomas

Let’s see the reading and writing to files in PHP with the help of an Example.

Create a text file example “file.txt” in the root folder.


//reading the contect

$stockFile = "file.txt";

$fh = fopen($stockFile, 'r');

$stockfileContents = fread($fh, 21); fclose($fh);

You can open the file using “fopen” command

The “fread” command is for reading the content of file

//writing

if(isset($_POST['update'])){

 if(!empty($_POST['filename'])){

  $stockFilew = "file.txt";

  $stockFilew2 = fopen($stockFilew, 'w+') or die("Can't open file.");

  $newContents = $_POST['filename'];

  fwrite($stockFilew2, $newContents);

  fclose($stockFilew2);

 }

}

Here “fopen and fwrite” is for opening the file and write operation. The fclose for close the file.

Useful PHP SCripts

Post Views: 521

Related posts:

  1. The 7 Important Points to make a Quality website
  2. How to Make a QR Code
  3. Internet Live Stats – Internet Usage and Social Media Statistics
  4. Top Free WordPress Hosting Providers On the Internet
  • how to open a text file in html page
  • html read text file
  • php create empty file
  • php fopen create file
  • php read file line by line
  • php read specific line from file
  • php write log to text file
  • php write to file
  • Leave a Reply Cancel reply

    Your email address will not be published. Required fields are marked *

    Categories

    Android Apple MacBook Pro Artificial Intelligence(AI) Automobile Banking Business Computer Cybersecurity Digital Marketing Etisalat Finance Gaming General General Knowledge Google Health and Medicine Hosting Instagram-Reels Instagram Tips Internet iPhone Malayalam Microsoft Mobile Phones Movies Networking News Photoshop Tips PHP PUBG Mobile SEO SMO Softwares Technology TikTok Travel and Tourism UAE Guidelines uae news Web development Website Development Web Tips WhatsApp Windows windows 10 wordpress
    •  Cybersecurity tips for small businesses
      by Smart Techie
    •  How to make a Virtual Zero Balance Bank Account in India
      by Sijo Thomas
    •  Most Popular Foods in America
      by Smart Techie
    • 10 Steps to Building a Solid Data Management Plan
      by Sijo Thomas
    • 10 Ways to Tell I am Not Coming to Office Today
      by Smart Techie
    • 20 Years of World of Warcraft: How the MMO Keeps Reinventing Itself
      by Sijo Thomas
    • 3 Easy Ways to Grow Your Business Through Instagram
      by Sijo Thomas
    • 5 Best Jesus Piece Pendants
      by Smart Techie
    • 5 Best Search Engines in the World
      by Smart Techie
    • 5 Company Swag Ideas for Employees To Celebrate Corporate Wins
      by Sijo Thomas
    • 5 Free Vs Paid AI Tools
      by Smart Techie
    copyrights ©SWS 2017-2026
    ©2026 Internet Tips & Tricks | Powered by Superb Themes