<?php require("./phpMQTT.php"); $mqtt = new phpMQTT("localhost", 1883, "hacker"); if ($mqtt->connect()) { $mqtt->publish("hello","Hello World! at ".date("r"),0); $mqtt->close(); } ?>