© 2023 Hashnode
#php7
$nameArray = [ "first_name" => "Saiful", "last_name" => "Jamal", "age" => 32, "contact_number" => +8801677729892, "address" => [ 'present_address' => "32 Nowabganj Raod, Lalbagh, Dhaka 1…
The eloquent relationship provides a fluent way by which we define the relationship between databases and their respective models in Laravel. It is an important feature of the framework and one of its…
PHP is a popular server-side scripting language used for creating dynamic web pages and web applications. If you're new to PHP, getting started can be a daunting task. But don't worry, with a little b…
This tutorial will take you from zero to having a codeigniter app fully installed on AWS Lightsail instance. Introduction In this article, I will guide you to setting up the following technologies AW…
PHP spaceship operator is used to compare two operands together according to 3 factors which are like the below list: Less than Greater than Equal to The expression of the PHP spaceship operator is written like this below syntax. opera…
I have been using telegram for almost 4+ years and have made more than 30 bots during this period. I made the first one in PHP and the rest were build in Python and JavaScript. So today I thought why …
In this article, I will be explaining everything that is hidden or not clear about the registration and login system in php. This article is for someone who is already familiar with local server like …
Getters and Setters are a type of security concerned parameters. They allow certain function to occur at times and restrict some at times. Let me give you a brief example of what I really mean: <?php …
A while loop is another special type of statement called the iterative statements. Iteration means that incrementation or decrementation of value. 1. WHILE LOOP A while loop with keep executing the c…
An array is a variable that can hold multiple pieces of information within itself. A single array can hold numerous pieces of information like strings, integers, floating points, boolean, etc. all ins…