top of page
Search
The Tech Platform
Jan 25, 2022
Top 5 Programming Languages for Cyber Security
Cyber security is the application of technologies, processes and controls to protect systems, networks, programs, devices and data from...
The Tech Platform
Jan 17, 2022
Which language is best for Web Development?
Web development It refers to the building, creating, and maintaining of websites. It includes aspects such as web design, web publishing,...
The Tech Platform
Nov 24, 2021
7 Reasons to Choose Apache Pulsar over Apache Kafka
When you set out to build the best messaging infrastructure service, the first step is to pick the right underlying messaging technology....
The Tech Platform
Nov 19, 2021
How to Extract Any Text From a Pdf in Laravel
Portable Document Format (PDF) is a popular file format used for sharing documents that are often required to be printed or viewed in a...
The Tech Platform
Sep 20, 2021
PHP vs Python vs Ruby on Rails
In web development, choosing the right programming language and framework is important to the success of any project. Among the options...
The Tech Platform
Sep 18, 2021
Front-End Development and Back-End Development Languages.
Front End The front-end is built using a combination of technologies such as Hypertext Markup Language (HTML), JavaScript and Cascading...
The Tech Platform
Jun 28, 2021
Testing Laravel Zero dynamic commands
Laravel Zero is a Laravel-based framework for building command line applications. You can find applications built with it and resources...
The Tech Platform
Jun 25, 2021
Write a program to find the Area, Diameter and Circumference of Circle in PHP
Code: <?php $r = 4; $d = NULL; $c = NULL; $a = NULL; // $r = radius // $d = diameter // $c = circumference // $a = area /* formulas for...
The Tech Platform
Jun 21, 2021
Write a Program to find the Minimum and Maximum Number from the list using PHP.
Code: <!DOCTYPE html> <html> <body> <?php echo("Minimum Value from (42, 243, 532, 200, -80, -35)= " . min(42, 243, 532, 200, -80, -35) ....
The Tech Platform
Apr 27, 2021
Calculating The Difference Between Two Dates in PHP
Getting the difference between two dates in PHP isn’t as trivial as you may think. Actually, it’s much simpler when compared to other...
bottom of page