Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Pokaż wyniki MySQL w tabeli bez ponownego ładowania strony

W tym celu użyj Ajax:

Dodaj ten kod do strony głównej, na której chcesz wyświetlić dane tabeli

<html>
<head>
<script>
function dashboard() {
var query_parameter = document.getElementById("name").value;
var dataString = 'parameter=' + query_parameter;

// AJAX code to execute query and get back to same page with table content without reloading the page.
$.ajax({
type: "POST",
url: "execute_query.php",
data: dataString,
cache: false,
success: function(html) {
// alert(dataString);
document.getElementById("table_content").innerHTML=html;
}
});
return false;
}
</script>
</head>
<body>
<div id="table_content"></div>
</body>
</html>

W table_content div dane pochodzą z execute_query.php strona zostanie załadowana bez jej odświeżania.

execute_query.php

$user_name = $_POST['parameter'];

$query="SELECT * from info where name=$user_name";
$result=mysql_query($query);
$rs = mysql_fetch_array($result);

do
{
?>
<table>
<tr>
<td><?php echo $rs['city']; ?></td>
<td><?php echo $rs['phone_number']; ?></td>
</tr>
</table>
<?php
}while($rs = mysql_fetch_array($result));



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Jak dynamicznie zmieniać Limit w mySQL

  2. Połączenie tabeli GeoIP z tabelą adresów IP w MySQL

  3. Zwiększ pole identyfikatora tabeli z liczeniem bitowym

  4. Facebook nie może zeskrobać metadanych po przeniesieniu Wordpressa na nowy serwer

  5. Po prostu przekonwertuj 5-cyfrowy numer w bazie mysql na datę