Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • f302660dd0791d932ce0f49ef4eabc037567f911
  • master par défaut
  • script
  • new-devel
  • devel
  • timingView-edit
  • fix-mpv
7 résultats

TimingLine.hh

Blame
  • nb_insta.php 370 o
    <?php
    include "./config/database.php";
    
    var_dump($_POST);
    
    $nbInsta 			= (isset($_POST['nbInsta']))?$_POST['nbInsta']:null;
    $userInsta 			= (isset($_POST['userInsta']))?$_POST['userInsta']:null;
    
    
    $sql="UPDATE influenceurs set nb_instagram='$nbInsta' where tag_instagram='$userInsta'";
    
    if(mysqli_query($link, $sql)===TRUE){
        echo "DATA updated";
    }
    
    ?>