top of page
Search
The Tech Platform
Apr 21, 2021
Write a program to print numbers from 1 to 100?
Below is the program to print the Numbers from 1 to 100 in C++, C, Python3, C#, PHP and JavaScript. C++ // C++ program to How will you...
The Tech Platform
Apr 15, 2021
How To Run PHP Code Directly In The Visual Studio Code Console Terminal
It turns out you can run PHP code directly inside VS Code if you hook it up to your local PHP interpreter. No Debug Module Needed! It’s...
The Tech Platform
Apr 1, 2021
Write a PHP program to print the Alphabet Triangle Pattern.
Some different alphabet triangle patterns using range() function in PHP are shown below. Pattern 1 <?php $alpha = range('A', 'Z');...
The Tech Platform
Mar 26, 2021
Program to Find the Area of a Rectangle in PHP
Area of a rectangle is calculated by the mathematical formula, Length ∗ Breadth = Area Logic: Take two variables. Multiply both of them....
The Tech Platform
Mar 26, 2021
Program to Find the Area of Triangle in PHP
Area of a triangle is calculated by the following Mathematical formula, (base * height) / 2 = Area Program: Program to calculate area of...
The Tech Platform
Mar 19, 2021
What are HTTP Cookies?
What are HTTP Cookies? HTTP cookies, commonly known as cookies, are small pieces of data that are stored on a user's device (such as a...
The Tech Platform
Mar 17, 2021
Vue.js Transition
Vue.js transition has various ways of applying the transition to HTML elements when elements are added or updated in the DOM. Working...
The Tech Platform
Mar 10, 2021
4 Ways to Get the Laravel Version
Laravel is a popular PHP web application framework that provides various features and functionalities for developing web applications. It...
The Tech Platform
Feb 26, 2021
Get the Current URL in Laravel Controller & View
Laravel is a PHP web framework that is widely used by developers to build modern and robust web applications. In Laravel, there are...
The Tech Platform
Feb 26, 2021
How to Show Validation Errors in Laravel Views
By displaying validation errors in the view, the user can quickly identify what went wrong and take corrective actions. This helps to...
bottom of page