UPDATE, Thanks for all the quick responses. Should have probably clarified that I've already got JQuery providing the widgets with functionality. But it is helpful to better understand what the relationship is btw HTML, Javascript and PHP in web development.
Ben bir veritabanını sorgular ve bazı önceden yazılmış MySQL sorguları döndüren bir web sayfası bir araya getirmek için çalışıyorum:
Ben gibi sorguları bir avuç var:
function someQuery($connection) {
$query = "SELECT DISTINCT Column1, Column2
FROM TABLE1, TABLE2
WHERE TABLE1.Colum1_ID = TABLE2.Colum1_ID";
if (!($result = @ mysql_query ($query, $connection)))
showerror();
if (@ mysql_num_rows($result) != 0) {
echo "\n<table border=1 width=100%>";
echo "\n<tr>" .
"\n\t<th>Column1</th>" .
"\n\t<th>Column2</th>" .
"\n</tr>";
while($row = @ mysql_fetch_array($result)) {
echo "\n<tr>" .
"\n\t<td>{$row["Column1"]}</td>" .
"\n\t<td>{$row["Column2"]}</td>";
}
echo "\n</table>";
}
Sonra fonksiyonlarını görüntülemek için aletler vardır:
<li class="widget">
<div class="widget-top">
<h3>Query Category</h3>
<select>
<option value="1">Query of Interest 1</option>
<option value="2">Query of Interest 2</option>
<option value="3">Query of Interest 3</option>
<option value="4"Query of Interest 4</option>
</select>
</div>
<div class="widget-content">
<p><?
****Would Run Query here ****, but want to check the selections above and run query associated with selected option.
?></p>
</div>
</li>
Yani benim soru kullanıcı sorgu görüntüleme, ilişkili PHP fonksiyon çalışacak, böylece kullanıcı açılır menüden ilgi sorguları birini seçin diye nasıl bunu kurarım, seçilen sonuçlarla olduğunu?
Ben çevresinde arama bir sürü yaptık ve ben bu oldukça rutin bir özellik gibi hissediyorum rağmen, hiçbir şey burada yapmak ne çalışıyorum maç gibi görünüyor olduğunu bulmak için sürpriz oldu.