PhpMyAdmin, jquery kullanarak sunucudan ajax ile dizeleri ekle

0 Cevap php

Şu anda, ben ajax kullanarak, <li> bir çift eklemek çalışıyorum. Sorun, bu <li> Ben sunucuda var, bir veritabanı verileri kullanmak istiyorum olmasıdır. Ben bunu bilmek istiyorum! Ayrıca, jQuery kullanmak mümkündür?

Let's say I have a <div id="listHolder">, where I have a <ul> and then some <li>. Those <li> are the ones I want to change via ajax. I use phpMyAdmin, where I have a database called t_menuMaterials, and I want to retrieve strings inside m_nom. I'd also want to be able to change the menu, on a click of a button, change t_menuMaterials to t_menuTextures. I have been able to populate my menu, but only at the load of the page like that!

$requeteMenuMaterials = "SELECT * FROM t_menuMaterials ORDER BY m_id LIMIT 10";
$ressourcesListe = mysql_query($requeteMenuMaterials);

$targetMenu = "SELECT r_categorie FROM t_ressources ORDER BY m_id LIMIT 10";
$ressourcesListe2 = mysql_query($targetMenu);
$menu2 ='';
while($tbl_ressources1 = mysql_fetch_assoc($ressourcesListe)){
    $menu2 .='<li class="secondaryMenu"><a href="#" onClick="test('.$ressourcesListe2.');" ><div>'.$tbl_ressources1['m_nom'].'</div></a></li>';
}

Şimdi, $requeteMenuMaterials olursam gibi = "t_menuTextures (yerine t_menuMaterials arasında) SELECT * from (div değiştirmek mümkün olmak istiyorum. Ben nasıl değiştirileceği ile ilgili hiçbir fikrim yok Bu <li> Benim veritabanları ve phpMyAdmin kullanarak ajax.

0 Cevap