Hello i am trying to send the ID other page I am trying to get the value of my vids but I can not get the value I only get $vid[$x] to other page can someone help me.
<?php
for ($x = 0; $x <= $n; $x++)
{
$data = get_imei($imei[$x]);
$datas = explode("*", $data);
$offlines = $datas[0];
$offline = get_offline($offlines);
if($offline == "Offline")
{
echo "<tr>
<th>$x</th>
<th>$accntid[$x]</th>
<th>$fname[$x]</th>
<th>$lname[$x]</th>
<th>$vid[$x]</th>
<th>$vplatenum[$x]</th>
<th>$imei[$x]</th>
<th>$datas[1]</th>
<th>$datas[0]</th>
<th>$offline</th>";
echo "<th>";
echo '<button><a href="TroubleHistory.php?vids=echo $vid[$x]">View Troubleshoot History</button>';
echo"</th>";
echo "</tr> ";
}
else
{
}
}
?>