Jump to content

Php on .tpl files?


YooSERV

Recommended Posts

Well that's a bit tougher because the whmcs files are encoded, here's what I recommend doing (it also depends where you place this code, but we'll see about that later ;) ):

 

{php}
   $whmcs_path = '/complete/whmcs/path/here/';
   require($whmcs_path . 'configuration.php');
   $db = new mysqli($db_host, $db_username, $db_password, $db_name);
   $details = $this->get_template_vars('clientsdetails');
   $sql = "SELECT email FROM tblclients WHERE id='". $details['id'] ."'";
   $email = $db->query($sql)->fetch_object()->email;
   echo $email;
{/php}

 

That code will fetch the email directly from the MySQL database, the whmcs location is required to tell the script where to get the configuration file (it needs the username/pass and name of the database to fetch the email).

 

Note that the path needs to be the full one, meaning something like /home/user/public_html/whmcs_dir/

Edited by DedicatedPros
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated