prepare("SELECT * FROM body_colours WHERE uid = :u"); $bc->bindParam(":u", $user->id, PDO::PARAM_INT); $bc->execute(); if($bc->rowCount() > 0) { $bc = $bc->fetch(PDO::FETCH_OBJ); } else { die('Something went wrong, please contact an Administrator on the Discord Server'); } $body = '
Body Colors

Currently Wearing
'; pageHandler(); $ph->body = $body; $ph->pageTitle("Avatar"); $ph->output();