Guest User

Untitled

a guest
Jan 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. function detail(){
  2.     mvc_loadModel();
  3.     $product = model_product_getProduct();
  4.  
  5.     $vars = array();
  6.  
  7.     if($product){
  8.         $vars["product"] = $product;
  9.         mvc_showView('detail', $vars);
  10.     } else{
  11.         mvc_showView('invalid');
  12.     }
  13. }
Add Comment
Please, Sign In to add comment