whmcs-invoice-template

Display Dedicated IP into viewinvoice.tpl and invoicepdf.tpl in WHMCS?

一曲冷凌霜 提交于 2019-12-01 14:00:34
Hi stack i have one issue that dont know how to resolve. I want to show Dedicated IP from customer order to show like this: I make a short check, and found that need to be done into viewinvoice.tpl and invoicepdf.tpl files. i found that dedicated ip is stores into tblhosting table in database. I found this code: {php} $clienthosting = $this->get_template_vars(service); $dbid = $clienthosting['id']; $query = mysql_query("SELECT dedicatedip FROM tblhosting WHERE id = $dbid"); $result = mysql_fetch_array($query); $dedicatedip = $result["dedicatedip"]; $this->assign("dedicatedip", $dedicatedip); {

Display Dedicated IP into viewinvoice.tpl and invoicepdf.tpl in WHMCS?

女生的网名这么多〃 提交于 2019-12-01 13:14:09
问题 Hi stack i have one issue that dont know how to resolve. I want to show Dedicated IP from customer order to show like this: I make a short check, and found that need to be done into viewinvoice.tpl and invoicepdf.tpl files. i found that dedicated ip is stores into tblhosting table in database. I found this code: {php} $clienthosting = $this->get_template_vars(service); $dbid = $clienthosting['id']; $query = mysql_query("SELECT dedicatedip FROM tblhosting WHERE id = $dbid"); $result = mysql