Quantcast
Channel: WHMCS Community Forums
Viewing all articles
Browse latest Browse all 13458

SQL Help: Can't show $dedicatedip on Invoice

$
0
0
Hello,

I am trying to show a dedicated IP of VPS on Invoice but it does not work.



Here is my code:

PHP Code:

{php}
    
$whmcs_path '/user/path/whmcs/';
    require(
$whmcs_path 'configuration.php');
    
$db = new mysqli($db_host$db_username$db_password$db_name);
    
$details $this->get_template_vars('clientsdetails');
$query mysql_query("SELECT dedicatedip FROM `tblhosting` WHERE `id` = '$serviceid'");
    
$result mysql_fetch_array($query);
    
$ipAddress $result['dedicatedip'];
    echo 
$ipAddress;
{/
php


Viewing all articles
Browse latest Browse all 13458

Trending Articles