hello! can anyone help on how can i get the value in the address
while( $row=mysqli_fetch_array($query) ) {
$nestedData=array();
$image_location = '../'.$row["client_photo"];
$nestedData[] = $row["client_id"];
$nestedData[] = "<img src=".$image_location." class='img-circle img-responsive' width='30%'/>";
$nestedData[] = $row["client_lastname"];
$nestedData[] = $row["client_firstname"];
$nestedData[] = $row["client_middlename"];
**$client_link = 'admin_branchupdate.php?clientid='.$row["client_id"].'&branchid='$_GET["branchid"]; **
$nestedData[] = "<a href='$client_link' >Choose</a>";
$data[] = $nestedData;
}
its show no data