CodeWithSushil
CodeWithSushil

Sushil Kumar

@CodeWithSushil

A self-taught πŸ•ΈοΈ Web DeveloperΒ πŸ‘¨πŸ»β€πŸ’» || Linux 🐧 Lover || Open source 🌐 contributor πŸ‘₯ || PHP/Laravel 🐘 and JS fanboyπŸ‘¦πŸ» || Creator of 🌿 Supabase-PHP Client 🀝

β€’ β€’ 188 Posts β€’ 2K Views

  • No matching results...
  • Searching...

/ 255

Poll Options

Pinned

Why I stopped using Node.js for most of my projects πŸ‘‡

I got tired of installing a 3rd-party package for every small feature.

Want sessions? package.
File upload? package.
Validation? package.
Auth? 4–5 packages.
Security? More packages.

I just want to build β€” not manage dependencies.

PHP gives me sessions, cookies, forms, security, routing basics built-in.
Less boilerplate, fewer risks, faster shipping.

Node.js is powerful for real-time & microservices, but for rapid secure web dev β€” PHP feels more productive for me.

Not hate. Just choosing the tool that lets me focus on creating, not configuring.

#webdev #NodeJS #PHP #programming #devlife

β€’ β€’

22

β€’
β€’

My first PHP and SQLite based dynamic website host on Render (free SSL), but it is my experimental journey with a subdomain so visit my portfolio: my-portfolio-154a.onrender.com

β€’ β€’

36

β€’
β€’

A interface class extends another interface class also.

interface A
{
public function a();
}

interface B extends A
{
public function b();
}

class C implements A, B
{
public function a()
{
echo "hi A";
}
public function b()
{
echo "hi B";
}
}

$c = new C();
$c->a();
$c->b();

β€’ β€’

82

β€’
β€’

Happy teachers day

β€’ β€’

79

β€’
β€’

Tailwind CSS or Uno CSS
Bootstrap or Bulma CSS

8 votes Β· Poll expired
β€’ β€’

67

β€’
β€’

Better experience and fast, secure way to create a connection with MariaDB.

// Config.php

$mariadb = ini_get('pdo_mysql.default_socket');

$pdo = new PDO("mysql:unix_socket=$mariadb;dbname=test", 'root', '');

if($pdo){
echo "Database connection success!";
}

β€’ β€’

52

β€’
β€’