รวมรถยี่ห้อต่างๆ มากมายทั่วโลก ข้อมูลรถแต่ละรุ่น แต่ละยี่ห้อว่ามีรุ่นอะไรบ้าง รวมถึงสเปคต่างๆ และราคาแต่ละยี่ห้อ เพื่อเป็นข้อมูลสำหรับคนที่กำลังสนใจจะซื้อบิ๊กไบค์ หรือหาข้อมูลรถเพื่อพิจารณาเรื่องต่างๆ
prepare('select BrandId, Name, ThumbnailPath, Count, FilePath, Title from motorcyclebrand where Status=1'))
{
if ($stmt->execute())
{
$stmt->store_result();
$stmt->bind_result($_brandid, $_name, $_thumbnailpath, $_count, $_filepath, $_title);
$rowCount = $stmt->num_rows;
if ($rowCount > 0)
{
while ($stmt->fetch())
{
$_name = stripslashes($_name);
$_thumbnailpath = stripslashes($_thumbnailpath);
$_filepath = stripslashes($_filepath);
$_title = stripslashes($_title);
?>