14 lines
367 B
PHP
14 lines
367 B
PHP
<?php
|
|
include('headscript.php');
|
|
//fetch table rows from mysql db
|
|
$sql = "select * from roles";
|
|
$result = mysqli_query($connection, $sql) or die("Error in Selecting " . mysqli_error($connection));
|
|
|
|
//create an array
|
|
$emparray = array();
|
|
while($row =mysqli_fetch_assoc($result))
|
|
{
|
|
$emparray[] = $row;
|
|
}
|
|
echo json_encode($emparray);
|
|
?>
|