Originally I was using input with an id and grabbing it\'s value with getElementById. Currently, I\'m playing with
if i click table name its shown all fields about table. i did table field to show. but i need to know click function. My Code:s. How can I grab the values of the
$sql = "SHOW tables from database_name where tables_in_databasename not like '%tablename' and tables_in_databasename not like '%tablename%'";
$result=mysqli_query($cons,$sql);
$count = 0;
$array = array();
while ($row = mysqli_fetch_assoc($result)) {
$count++;
$tbody_txt .= '';
foreach ($row as $key => $value) {
if($count == '1') {
$thead_txt .=' '.$key.' ';
}
$tbody_txt .=''.$value.' ';
$array[$key][] = $value;
}
}?>