第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

當(dāng)復(fù)選框被選中時(shí),它會(huì)觸發(fā)更多事件

當(dāng)復(fù)選框被選中時(shí),它會(huì)觸發(fā)更多事件

PHP
飲歌長(zhǎng)嘯 2024-01-19 10:28:08
我正在制作一個(gè)應(yīng)用程序,根據(jù)按下的復(fù)選框?qū)⒚Q和一些文本添加到數(shù)據(jù)庫(kù)中。我有一個(gè) if 語句,當(dāng)兩個(gè)復(fù)選框都被按下時(shí)觸發(fā)。問題是,每次您選擇兩者時(shí),它都會(huì)為第一個(gè)復(fù)選框和第二個(gè)復(fù)選框添加文本,然后合并。我希望如果您同時(shí)按下兩個(gè)鍵,則僅顯示組合文本。這是有問題的代碼。      {        if (isset($_POST['laptopCheck'])) {          $pdo = new PDO("mysql:host=localhost;dbname=liamed", "root", "");          $nume = $_POST['nume'];          $prenume = $_POST['prenume'];          $obiecte = 'laptop';          $q = "insert into users(nume,prenume,inventar)values(:nume,:prenume,:obiecte)";          $r = $pdo->prepare($q);          $r->execute(array(":nume"=>$nume, ":prenume"=>$prenume, ":obiecte"=>$obiecte));        }        if (isset($_POST['telefonCheck'])) {          $pdo = new PDO("mysql:host=localhost;dbname=liamed", "root", "");          $nume = $_POST['nume'];          $prenume = $_POST['prenume'];          $obiecte = 'telefon';          $q = "insert into users(nume,prenume,inventar)values(:nume,:prenume,:obiecte)";          $r = $pdo->prepare($q);          $r->execute(array(":nume"=>$nume, ":prenume"=>$prenume, ":obiecte"=>$obiecte));        }        if (isset($_POST['telefonCheck']) && isset($_POST['laptopCheck'])) {          $pdo = new PDO("mysql:host=localhost;dbname=liamed", "root", "");          $nume = $_POST['nume'];          $prenume = $_POST['prenume'];          $obiecte = 'laptop si telefon';          $q = "insert into users(nume,prenume,inventar)values(:nume,:prenume,:obiecte)";          $r = $pdo->prepare($q);          $r->execute(array(":nume"=>$nume, ":prenume"=>$prenume, ":obiecte"=>$obiecte));        }      }
查看完整描述

1 回答

?
當(dāng)年話下

TA貢獻(xiàn)1890條經(jīng)驗(yàn) 獲得超9個(gè)贊

只需更改檢查值的順序并使用 elseif


您還可以刪除相當(dāng)多的重復(fù)代碼。


$pdo = new PDO("mysql:host=localhost;dbname=liamed", "root", "");


$q = "insert into users

              (nume,prenume,inventar)

        values(:nume,:prenume,:obiecte)";

$r = $pdo->prepare($q);


$obiecte = false;


if (isset($_POST['telefonCheck']) && isset($_POST['laptopCheck'])) {

    $obiecte = 'laptop si telefon';

} elseif (isset($_POST['laptopCheck'])) {

    $obiecte = 'laptop';

} elseif (isset($_POST['telefonCheck'])) {

    $obiecte = 'telefon';

}


if ( $obiecte ) {  // only run if one of the above if's changed this from false

    $r->execute(array(":nume" => $_POST['nume'], 

                      ":prenume" => $_POST['prenume'], 

                      ":obiecte"=>$obiecte)

                );

}


查看完整回答
反對(duì) 回復(fù) 2024-01-19
  • 1 回答
  • 0 關(guān)注
  • 159 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)