tiagocaus Posted October 3, 2020 Share Posted October 3, 2020 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? $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>' ); } 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.