Makarand Mane – Tyche Ventures

Makarand Mane

May 4, 2020

Sending mail in PHP

Mail in PHP PHP comes with a default function mail() that allows you to send mail directly from a PHP […]
May 4, 2020

Handling database in PHP

Creating database connection PHP provides mysql_connect function to open a database connection. connection mysql_connect(server,user,passwd,new_link,client_flag);  server : Optional , The host […]
May 4, 2020

Session Handling in PHP

What is session ? A normal HTML website will not pass data from one page to another. In other words, […]
May 4, 2020

Inheritance in PHP

What is Inheritance ? Inheritance is one of the popularly used Object Oriented Programming features. It allows having shared properties […]
May 4, 2020

Dynamic Menu in PHP

Steps to creating menu using array in PHP Step 1 : Create the array for menu A menu consist of […]
May 4, 2020

PHP Cookies

What is a cookie Cookies are used to store the information of a web page in a remote browser so […]
May 2, 2020

PHP Date & Time

The PHP date() function is used to format a date and/or a time. Syntax: <?php date(format,[timestamp]); ?> Here, “date(…)” is […]
May 2, 2020

PHP File Handling

When we develop a web application using PHP, quite often we need to work with external files, like reading data […]
April 30, 2020

Animation on scroll using AOS Animate On Scroll Library

Introduction There are many libraries for animation on scroll. In this tutorial we will see the animation on scroll using […]