As mentioned, I am getting a JSON string with out the identifiers. The code I am using is:
<html>
<head>
<script language="javascript" type="text/javascript" src="/content/scripts/jquery/v2.1.3/jquery-2.1.3.js"></script>
</head>
<body>
<h2> Client example </h2>
<h3>Output: </h3>
<?php
$host = "localhost";
$user = "{username}";
$pass = "{password}";
$databaseName = "{database}";
$tableName = "{table}";
$con = mysql_connect($host,$user,$pass);
$dbs = mysql_select_db($databaseName, $con);
$result = mysql_query("SELECT * FROM $tableName");
$array = mysql_fetch_row($result);
echo json_encode($array);
?>
</body>
My results are:
["2d791c8b-d8cf-11e4-a712-002590f3d888","********","********"]
I am extremely new to PHP and MySQL, so be gentle.