you must ;
//initialize the smarty class
$mysmarty = NEW smarty;
//get your bike variable
$bike = ???;
//assign this variable to your class;
$mysmarty->assign("bike", $bike);
//display the template with the bike variable;
$mysmarty->display("mytemplate.html");