Mysql
 sql >> Database >  >> RDS >> Mysql

creazione di tag Div dinamici per la tabella generata da AJAX-PHP-MySQL

Ti suggerisco di utilizzare ez sql per semplificare l'interrogazione del database:http://justinvincent.com/ezsql

E anche jquery:http://jquery.com/

Ed ecco un tutorial che mostra come eseguire chiamate ajax in jquery:http://net.tutsplus.com/tutorials/javascript-ajax/5-ways-to-make-ajax-calls-with-jquery/

Dal tuo codice, posso vedere che stai cercando di interrogare il database usando una variabile $ _GET. E presumo che il nome del tuo campo di ricerca sia 'q'. E visualizzare i risultati in modo dinamico utilizzando javascript.

HTML:

<input type="text" id="q" name="q"/>
<div id="your_div"></div><!--this is where your html table will be loaded dynamically as you type a value on the textbox-->

JAVASCRIPT:

<script src="jquery.js"></script>
<script>
$(function(){
  $('#q').keyup(function(){
     var query = $.trim($(this).val());
     $('#your_div').load('phpfile.php', {'q' : query});
  });
});
</script>

PHP:

 //database configuration here

$q = mysql_real_escape_string($_POST['q']);

//html table here