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

VivyDocumentView.hh

Blame
    • Kubat's avatar
      eb3ac10b
      UI VivyDocumentView: Small updates · eb3ac10b
      Kubat a rédigé
      - Don't show the 'Open properties' action in views when it can be
        toggled by the QDockWidget's action
      - Use constexpr things to group all dock features -> easy to view and
        understand now
      UI VivyDocumentView: Small updates
      Kubat a rédigé
      - Don't show the 'Open properties' action in views when it can be
        toggled by the QDockWidget's action
      - Use constexpr things to group all dock features -> easy to view and
        understand now
    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";
    }
    
    ?>