Call specific $row['time'] from php and show in hype

i´m able to write i.e. time and name into a database and call the whole table using ajax into hype again.
something like a highscore.
what i cannot manage is to call a specific $row[‘zeit’] and show in hype. it always shows me the whole table.
also i want to sort this row ascending. in php i tried natsort(), but failed, because i´ve to use a array of numbers.
maby someone can give me a hint how to do this?
thank you.

my php:

<?php
include ('DB.php'); 
$con = mysqli_connect($host,$user,$pass,$databaseName);
if (!$con) {
    die('Could not connect: ' . mysqli_error($con));
}
mysqli_select_db($con,$tableName);
$sql="SELECT * FROM $tableName ORDER BY zeit";
$result = mysqli_query($con,$sql);
echo "<table>
<tr>
<th>Zeit</th>
<th>Name</th>
<th>Diverses</th>
</tr>";
while($row = mysqli_fetch_array($result)) {
echo "<tr>";
echo "<td>" . $row['zeit'] . "</td>";
echo "<td>" . $row['username'] . "</td>";
echo "<td>" . $row['password'] . "</td>";
echo "</tr>";
}
echo "</table>";
mysqli_close($con);
?>

my hype-function():

$.ajax({
    url: 'dataBase.php',
    type: 'POST',
    dataType: 'HTML',
    data: {
          zeit: $('#zeit').val(),
           },
     success: function(response){                    

        $("#load").html(response); 
        
    }
});

try maybe

$sql = "SELECT zeit, username, password FROM $tablename ORDER by zeit ASC"
while ($row = mysqli_fetch_row($result)) {

As it returns an associative array you could perhaps output it like this:

echo "<td>" . $row[0] . "</td>"; //  $row[0] being 'zeit'
echo "<td>" . $row[1] . "</td>";
echo "<td>" . $row[2] . "</td>"

unfortunately this isn´t working - the only thing is the same result, because
$row['zeit'] outputs the same as $row[1]

What about setting a limit

"LIMIT 1"

so it only brings back 1 row

You can order in your SQL.

"ORDER by (whatever) ASC"

P.S I'm away from main comp so can't test. Just throwing out ideas :slight_smile:

this is what i do, but don´t work.
$sql=“SELECT * FROM $tableName ORDER BY zeit ASC”;
so example “345” comes before"50" - this souldn´t be.

YES!! GOT it! so simple - :innocent:
you´ve to write

"*1 ASC":
$sql="SELECT * FROM $tableName ORDER BY zeit * 1 ASC";`