am newer to php i find lot's of code given symbol like (->)
for ex:
 $st = $db->prepare("SELECT * FROM jqm_categories");
here getting some values from table jqm_categories and   global $db; it was database  config file  given below 
/*
    This file creates a new MySQL connection using the PDO class.
    The login details are taken from includes/config.php.
*/
try {
    $db = new PDO(
        "mysql:host=$db_host;dbname=$db_name;charset=UTF-8",
        $db_user,
        $db_pass
    );
    $db->query("SET NAMES 'utf8'");
    $db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
}
catch(PDOException $e) {
    error_log($e->getMessage());
    die("A database error was encountered");
}
Here why they used "->" symbol
 
     
     
     
     
    