Mysql
 sql >> Database >  >> RDS >> Mysql

Con PHP sottrai una quantità da una tabella mysql

Proverei qualcosa del genere :

if ($txt === 'caffe') {

    // get Caffe value :

    try {
        $currentCaffeValue = $conn->query("SELECT yourCaffeValue FROM yourTable");
    } catch (Exception $e) {
        echo 'db read failed : ', $e->getMessage();
    }

    // do your stuff then update Caffe value :

    try {
        $conn->query("UPDATE yourTable SET yourCaffeValue = yourCaffeValue - 1");
    } catch (Exception $e) {
        echo 'db update failed : ', $e->getMessage();
    }
}

E a proposito, dovresti disinfettare i valori da $_GET prima di usarlo:http ://php.net/manual/en/function.filter-input.php