Today we will learn PHP Datatypes. PHP supports the following Datatypes: String Integer Float (floating-point numbers – also called double) Boolean Array Object NULL Resource To create variables, these data types are used. Now let’s discuss in depth each one
Author: admin
PHP Variables & Constants
In this article, we will learn php variables and also learn php constant with example. PHP Variables Variables are also used for storing data, such as text strings, numbers, etc. Over the codes of a script, variable values can be
PHP Syntax
PHP script start with the <?php tag and ends with ?> tag. Between the two tags, a PHP script is written. <?php the opening tag and the ?> closing tag tells the engine to treat the enclosed code block as
How to install xampp in windows 10
Today I am going to show you how to install xampp on your local machine. We will learn how to install xampp step by step on Windows 10 machine. Step 1: Search for xampp Step 2: Download Xampp Step 3:
Laravel 8.0 Authentication with Breeze Example
Hello artisan, Today I am going to show you laravel Authentication with breeze. In this example, we will learn the laravel authentication system with Breeze. Laravel makes it very efficient and easir to the developers. Read also Laravel 8.0 Auth
Laravel Get Next / Previous Post
Hello artisan, Today I am going to show you an interesting topic. Sometimes you want to display previous and next posts in your blog. Laravel makes it very easy to implement this logic. In this post, you will learn, How
How to Get Random Records in Laravel
Hi, Artisan. today I am going to show you how to get random records from the Database in laravel. Laravel makes it very easy for us. We use inRandomOrder() method to ger random records in laravel. Read also: Create a
Laravel 8.0 Create/Generate Slug Example
Hello, artisan today I am going to show you an interesting topic in laravel. In this example you will learn how generate slug form title. This very easy to implement using laravel helper function. Create project Setup Database Credentials Create
Laravel 8.0 Get Country, City & Address From IP Address example
Hello artisan, Today I am going to show an interesting topic about fetching user info in Larave 8.0. In Laravel 8.0 you can get Country, City, and address is very easy to find using stevebauman/location package. If you are using
Read More Laravel 8.0 Get Country, City & Address From IP Address example
Laravel 8.0 Resource Routing Example
In this example, we will see how resource router works. Before that we will show how normal routes work for normal crud app. Resource Routing in Laravel 8.0 makes developers for writing code efficiently and manageable routes/web.php Normal crud app