Category Archives: Uncategorized

Internet of Things [IoT]

We’re entering a new era of computing technology that many are calling the Internet of Things (IoT). Machine to machine, machine to infrastructure, machine to environment, the Internet of Everything, the Internet of Intelligent Things, intelligent systems—call it what you want, but it’s happening, and its potential is huge Does

Learn PHP Basics – For Freshers and Experienced

Database Connection Connect mysqli with php using Object-Oriented Way. $host = “localhost”; $username = “root”; $password = “”; $conn = new mysqli($host, $username, $password); //connect to server if ($conn->connect_error) { die(“Connection failed: ” . $conn->connect_error); } echo “Connected successfully”; Connect mysqli with php using Procedural Way. $host = “localhost”; $username

JQuery Selectors

The jQuery function $() is used to find elements on the page to work with. Common Selectors Selector Usage Description element $(“p”).hide(); The jQuery element selector selects elements based on the element name. #id $(“#test”).hide(); The #id selector – Jquery id selector uses the id attribute of an HTML tag

« Older Entries Recent Entries »