Category: PHP (Page 8 of 15)

Learn PHP programming through practical examples and tutorials. This category covers core PHP concepts, form handling, file opera

How to use session in php

Last updated on January 17th, 2023 at 02:37 pmA PHP session can be used to store information or change settings for a user. Usually a session variables hold data about one single user, and are available to all pages in one application. Below script will help you understand on how to store, retrieve and delete […]

How to generate random password using php

Last updated on December 27th, 2022 at 10:24 amA developer needs this script handy for configuring a website that can generate random password for the user in order to login to a website or may be during a user registration process. I am explaining two different methods of generating random password. You can easily increase […]

How to Use ob_start() in PHP to Control and Modify Output Buffering

Last updated on May 7th, 2025 at 11:55 amIn PHP, output buffering allows you to control when and how your script’s output is sent to the browser. By default, PHP sends output (like echo statements) to the browser immediately. However, with output buffering, you can capture this output, modify it if needed, and send it […]

« Older posts Newer posts »