Jump to content

Show custom field value in the report.


tiagocaus

Recommended Posts

I am creating a new report.
I need to get the value of a custom field.

How do I get the value of the custom field to appear in the report?

image.png.6172470e5824204fc81f6c8a22c2193c.png

 

$reportdata["tableheadings"] = array("Chave", "Client Name", "Telefone", "Product Name", "Service ID");


$result = select_query("tblhosting", "tblhosting.*, tblclients.firstname, tblclients.lastname, tblproducts.name, tblclients.phonenumber", array(
            "tblproducts.name"=>$tblproductsName,
            "tblclients.country"=>"BR",
            "domainstatus"=>$status, //Active, Pending, Terminated, Cancelled, Fraud
        ), "id","ASC","","tblclients ON tblclients.id=tblhosting.userid INNER JOIN tblproducts ON tblproducts.id=tblhosting.packageid"
);



while ($data = mysql_fetch_array($result)) {
    $serviceid = $data["id"];
    $userid = $data["userid"];
    $phonenumber = $data["phonenumber"];
    $clientname = $data["firstname"]." ".$data["lastname"];
    $productname = $data["name"];
    $phonenumber = str_replace(array(" ", "(", ")", "-"), "", $phonenumber);




    $reportdata["tablevalues"][] = array(
        "",   <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< Chave
        $clientname,
        $phonenumber,
        $productname,
        '<a href="clientshosting.php?userid=' . $userid . '&id=' . $serviceid . '">' . $serviceid . '</a>'

    );
}

 

 

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