What is the use of PHP explain with syntax?

What is PHP? PHP: Hypertext Preprocessor(Recursive Acronym) Server Side Programming/Scripting Language Can be embedded directly within HTML (<?php ?>) Files use a “.php” file extension. If… statement:- if… and nested…

Read more »

How to store and retrieve image from the database in Laravel.

# Creating Migration For Uploading Image We need to add three lines in our migration file which makes column in our Database .After adding, run Migration . # Blade Form…

Read more »

How to declare conditional statements in PHP with example?

When You write a code different actions for different conditions. Then, You can use Conditional statements in your code to do this. If Statement:- If Statement executes some code when…

Read more »

PHP 7 Essential Guide – PHP Operators for beginners

PHP operators are used to performing operations on variables and values. Maths Operators Assignment operators Logical Operators Increment and Decrement Operators String Operators Maths Operators:- arithmetic operators are used with…

Read more »

How to install and activate plugins in Moodle?

Moodle is an open source platform which is used for managing your course and it is also called CMS ( Course management system). Here I want to say you about…

Read more »

How to Stop Brute Force Attacks on WordPress?

if you want to protect your WordPress site from Brute force attack. Then you should follow the below step. before going to step that can protect our website we are…

Read more »

PHP Tutorial for Beginners

What is PHP? It is an open-source general-purpose scripting language that is especially suited for web development. Code executed on the server. It can be embedded in HTML. You should…

Read more »

Top WordPress images & Media Gallery Plugins

Here you can find top useful media plugins Envira Gallery Image Photo Gallery Final Tiles Grid Photo Gallery by 10Web FooGallery Photo Gallery by Supsystic Everest Gallery Lite Meow Gallery…

Read more »

How to Move a Live WordPress Site to Local Server

Why we are discussing on this topic because we are here to tell you when any developer of WordPress wants to test new themes, plugins, or another development testing. then…

Read more »

Exploring Directory Structure in laravel.

Laravel applications follow the Model-View-Controller architecture design pattern. Models represent the entities in the database and help you to query the database and return the data Views are the pages that will be displayed…

Read more »

Best Laravel Packages to create awesome Admin Panels & other functionalities.

Here i am going to discuss about most trending and awesome packages for Laravel Developers. with these packages, you can easily embed some cool features like captcha, breadcrumbs and increase…

Read more »

55 Steps For build a project in php Laravel Framework.

1.laravel new project (open command prompt on xampp/htdocs directory) 2.cd projectname 4.Customise users table(database/migration/create_users_table.php) 5.Make Model and Migration for Role Table 6.Customise roles table(database/migration/create_roles_table.php) 7.Make Relationship between users and roles…

Read more »

How To Create a PDF using PHP

Step 1. Create a file index.php file. Copy this code. then, create a makepdf.php file. Step 2. Go to this link: https://github.com/mpdf/mpdf. Which includes mPDF is a PHP library that…

Read more »

Introduction to PHP Data Object PDO in PHP

There are three main API options when considering connecting to a MySQL database server. PHP’s MySQL Extension. PHP’s mysqli Extension. PHP Data Object (PDO). PHP Data Object (PDO) PDO is…

Read more »

How to send pdf file through phpmailer?

1.Create a directory for project on htdoc directory in xampp if you using wamp server then you create your directry on www directory. 2.Open your project directory with command prompt…

Read more »

How To Create a PDF using PHP

1.Create a directory for project on htdoc directory in xampp if you using wamp server then you create your directry on www directory. 2.Open your project directory with command prompt…

Read more »

What is function definition in php? with example.

PHP Function:- A function is a block of statements written in a program to perform some specific task.

Read more »

How to declare a local & global variable in PHP?

Local Variable:- Local Variables mean local is declared inside a function. Its value applies in any function. When local variable value modified in one function then changes not apply in…

Read more »

PHP important topics with example

PHP:- Hypertext Preprocessor(Recursive Acronym) Server-Side Programming/Scripting Language It can be embedded directly within HTML. Files use a “.php” file extension. PHP Case Sensitivity:- PHP Comments:- PHP Variables ($):- PHP echo…

Read more »