Jump to content
php.lv forumi

Update SQL tabulu ar linka palīdzību


Recommended Posts

Posted

Sveiki, sakiet lūdzu kāda būtu ērtākā metode kā updeitot tabulas datus pēc linka nospiešanas. Piem., no Db izlasu

 

Nosaukums Cena Daudzums Aktīvs

aaa 6 1 Nē <a href='url'>Aktivizēt</a>

bbb 2 2 Jā

ccc 4 5 Nē <a href='url'>Aktivizēt</a>

 

Būtībā nepieciešams, lai nospiežot "Aktivizēt" , DB konkrētajai rindai datu lauka aktivs vertiba mainitos uz 'Jā'. To vajadzētu darīt izsaucot Javascriptu? Varbūt ir kāds alternatīvs risinājums?

Posted (edited)

ar jquery izsauc ajax:

 

$('a.aktivizet').click(function(){
 var self=$(this);
 $.post('/aktivizet.php',{id:self.attr('aid')},function(){
   self.parent().html('Jā');
 },'text');
});

 

html aptuveni tāds:

 

Nē <a href='#' class="aktivizet" aid="123">Aktivizēt</a>

 

aktivizet.php savukārt:

$id=(int)$_POST['id'];
$db=new Mysqli(host,user,psw,db);
$db->query("UPDATE table SET active=true WHERE id=$id");

Edited by codez
Posted

kaut kas isti nesanak ar jquery. it ka izmantoju WP CMS,bet lidz ar to ari izmantoju $ vieta jQuery - ka tas teikts pamacibas.rezultata ieladejas balta lapa bez error paziņojuma.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...