prepare("SELECT * FROM assets WHERE AssetTypeId = 10 AND CreatorId = :cid ORDER BY created DESC"); $owned->bindParam(":cid", $user->id, PDO::PARAM_INT); $owned->execute(); $owned = $owned->fetchAll(PDO::FETCH_ASSOC); $assets = ""; foreach($owned as $asset) { $assets .= '
  • '.getAssetInfo($asset['id'])->Name.'

  • '; } $body = <<
    Upload Model to Fobe:

    EOT; pageHandler(); $ph->navbar = ""; $ph->footer = ""; $ph->studio = true; //force default theme (light) $ph->body = $body; $ph->pageTitle("Upload"); $ph->output();