GPGautam panditinblogbygautam.hashnode.dev·Oct 10, 2024 · 1 min readPrivate and Public KeyPrivate key → The key which is not read by any one, Accept the ownerPrivate key is not for share. Public Key → The key which is read any one and use anyoneThis is for share00
GKGiver Kdkingiver-kdk.hashnode.dev·Oct 24, 2023 · 2 min readPHP: Classes and ObjectsClasses Creating Classes and Objects in PHP is similar to C++. Let's see an example of a Car class: class Car { public $name; public $price; public function printInfo(){ echo "This is a sports car"; } } Here, '...00