CodeWithSushil
CodeWithSushil

Sushil Kumar

@CodeWithSushil

Full Stack Web Developer (LAMP / TALL), PHP, Laravel, Bootstrap, jQuery, Git & GitHub, and Firebase / Supabase

3 Answers 79 views

/ 255

What is TALL stack ?

TALL Stack is part of Laravel ecosystem. T for TailwindCSS, A for Alpine.js, L for Laravel, and L for Livewire. It is a Full Stack Web apps technology and part of PHP dev community. PHP rule over the internet take 76% market share.

80 views

What is difference between facebook's hack lang and PHP after PHP 8.1 ?

PHP is dynamic language.

Hack lang is modified language of php and type checking is required and other hand php have type checking is optional.

PHP:
<?php
echo "Hello 👋 World !!!";
?>

Hack:
<?hh
echo " Hello 👋 Hack-Lang!!!";
?>

387 views