skip to Main Content

How to create multiple variables from single variables output in PHP or smarty? – Phpmyadmin

The php code. public function GetProduct($id, $bc = '') { $productname = WHMCSProductProduct::getProductName($id); $description = WHMCSProductProduct::getProductDescription($id); $details = WHMCSProductProduct::find($id); $pricing = $details->pricing(); if ($bc == '') { $price = $pricing->first(); } else { $price = $pricing->byCycle($bc); if (is_null($price)) { $price…

VIEW QUESTION
Back To Top
Search