久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

  • <legend id='gvPPx'><style id='gvPPx'><dir id='gvPPx'><q id='gvPPx'></q></dir></style></legend>

    <tfoot id='gvPPx'></tfoot>

      <small id='gvPPx'></small><noframes id='gvPPx'>

      <i id='gvPPx'><tr id='gvPPx'><dt id='gvPPx'><q id='gvPPx'><span id='gvPPx'><b id='gvPPx'><form id='gvPPx'><ins id='gvPPx'></ins><ul id='gvPPx'></ul><sub id='gvPPx'></sub></form><legend id='gvPPx'></legend><bdo id='gvPPx'><pre id='gvPPx'><center id='gvPPx'></center></pre></bdo></b><th id='gvPPx'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='gvPPx'><tfoot id='gvPPx'></tfoot><dl id='gvPPx'><fieldset id='gvPPx'></fieldset></dl></div>
        <bdo id='gvPPx'></bdo><ul id='gvPPx'></ul>

      1. mysqli 插入 - 但前提是不重復(fù)

        mysqli insert - but only if not a duplicate(mysqli 插入 - 但前提是不重復(fù))
          <tbody id='mk7eJ'></tbody>

          <tfoot id='mk7eJ'></tfoot>
          <i id='mk7eJ'><tr id='mk7eJ'><dt id='mk7eJ'><q id='mk7eJ'><span id='mk7eJ'><b id='mk7eJ'><form id='mk7eJ'><ins id='mk7eJ'></ins><ul id='mk7eJ'></ul><sub id='mk7eJ'></sub></form><legend id='mk7eJ'></legend><bdo id='mk7eJ'><pre id='mk7eJ'><center id='mk7eJ'></center></pre></bdo></b><th id='mk7eJ'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='mk7eJ'><tfoot id='mk7eJ'></tfoot><dl id='mk7eJ'><fieldset id='mk7eJ'></fieldset></dl></div>
          • <small id='mk7eJ'></small><noframes id='mk7eJ'>

            • <bdo id='mk7eJ'></bdo><ul id='mk7eJ'></ul>

                <legend id='mk7eJ'><style id='mk7eJ'><dir id='mk7eJ'><q id='mk7eJ'></q></dir></style></legend>

                1. 本文介紹了mysqli 插入 - 但前提是不重復(fù)的處理方法,對大家解決問題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!

                  問題描述

                  我是一名 Java 開發(fā)人員,剛剛完成了一些快速簡單的數(shù)據(jù)庫工作"的任務(wù)——除了我對 PHP/MySQL 不太了解……我需要將記錄插入到數(shù)據(jù)庫中——但只有如果電子郵件字段與數(shù)據(jù)庫中已存在的字段不匹配.到目前為止,我收集到的 PHP 代碼如下:

                  I'm a Java developer who just got handed the task of "some quick easy DB stuff" - except I don't know much about PHP/MySQL...I need to insert a record into a DB - but only if the email field doesn't match one that already exists in the DB. Here's what I've gleaned so far for my PHP code:

                  // Grab the values from the HTML form:
                  $newUserName = $_POST['newUserName'];
                  $newUserName = $mysqli->real_escape_string($newUserName);
                  $newUserEmail = $_POST['newUserEmail'];
                  $newUserEmail = $mysqli->real_escape_string($newUserEmail);
                  
                  // Now search the DB to see if a record with this email already exists:
                  $mysqli->query("SELECT * FROM RegisteredUsersTable WHERE UserEmail = '$newUserEmail'");
                  

                  現(xiàn)在我需要查看是否有任何內(nèi)容從該搜索中返回 - 這意味著電子郵件已經(jīng)存在 - 如果是,我需要提醒用戶,否則我可以繼續(xù)使用:

                  Now I need to see if anything came back from that search - meaning the email already exists - and if so I need to alert the user, otherwise I can go ahead and insert the new info into the DB using:

                  $mysqli->query("INSERT INTO RegisteredUsersTable (UserName, UserEmail) VALUES ('".$newUserName."', '".$newUserEmail."')");
                  

                  有什么想法嗎?

                  推薦答案

                  根據(jù)您的代碼工作,這應(yīng)該為您指明正確的方向.也許有更好的方法來構(gòu)建您的數(shù)據(jù)庫,以便更好地利用它.

                  Working from your code, this should point you in the right direction. there are, perhaps, better ways to structure your database that will make better use of it.

                  <?php
                  
                  $mysqli = new mysqli("localhost", "iodine", "iodine","iodine");
                  
                  // Grab the values from the HTML form:
                  /*
                  $newUserName = $_POST['newUserName'];
                  $newUserName = $mysqli->real_escape_string($newUserName);
                  $newUserEmail = $_POST['newUserEmail'];
                  $newUserEmail = $mysqli->real_escape_string($newUserEmail);
                  */
                  $newUserName = "Test User";
                  $newUserEmail = "test4@example.com";
                  
                  // Now search the DB to see if a record with this email already exists:
                  echo "SELECT * FROM RegisteredUsersTable WHERE UserEmail = '$newUserEmail'", "
                  ";
                  $result = $mysqli->query("SELECT * FROM RegisteredUsersTable WHERE UserEmail = '$newUserEmail'");
                  
                  if (!$result) {
                    die($mysqli->error);
                  }
                  echo "num_rows = ".$result->num_rows."
                  ";
                  if ($result->num_rows > 0) {
                     echo "Duplicate email
                  ";
                     // do something to alert user about non-unique email
                  } else {
                    $result = $mysqli->query("INSERT IGNORE INTO RegisteredUsersTable (UserName, UserEmail) VALUES ('".$newUserName."', '".$newUserEmail."')");
                    if ($result === false) {echo "SQL error:".$mysqli->error;}
                  }
                  
                  ?>
                  

                  這篇關(guān)于mysqli 插入 - 但前提是不重復(fù)的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

                  【網(wǎng)站聲明】本站部分內(nèi)容來源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請聯(lián)系我們刪除處理,感謝您的支持!

                  相關(guān)文檔推薦

                  store_result() and get_result() in mysql returns false(mysql 中的 store_result() 和 get_result() 返回 false)
                  Call to undefined function mysqli_result::num_rows()(調(diào)用未定義的函數(shù) mysqli_result::num_rows())
                  PHP Prepared Statement Problems(PHP 準(zhǔn)備好的語句問題)
                  mysqli_fetch_array returning only one result(mysqli_fetch_array 只返回一個(gè)結(jié)果)
                  PHP MySQLi Multiple Inserts(PHP MySQLi 多次插入)
                  How do I make sure that values from MySQL keep their type in PHP?(如何確保 MySQL 中的值在 PHP 中保持其類型?)

                    1. <i id='Bbf8K'><tr id='Bbf8K'><dt id='Bbf8K'><q id='Bbf8K'><span id='Bbf8K'><b id='Bbf8K'><form id='Bbf8K'><ins id='Bbf8K'></ins><ul id='Bbf8K'></ul><sub id='Bbf8K'></sub></form><legend id='Bbf8K'></legend><bdo id='Bbf8K'><pre id='Bbf8K'><center id='Bbf8K'></center></pre></bdo></b><th id='Bbf8K'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='Bbf8K'><tfoot id='Bbf8K'></tfoot><dl id='Bbf8K'><fieldset id='Bbf8K'></fieldset></dl></div>

                      <small id='Bbf8K'></small><noframes id='Bbf8K'>

                        <tbody id='Bbf8K'></tbody>

                            <bdo id='Bbf8K'></bdo><ul id='Bbf8K'></ul>

                            <tfoot id='Bbf8K'></tfoot>
                            <legend id='Bbf8K'><style id='Bbf8K'><dir id='Bbf8K'><q id='Bbf8K'></q></dir></style></legend>
                          • 主站蜘蛛池模板: 国产精品theporn| 国产一级毛片视频 | 日韩最新网站 | 精品在线一区二区 | 在线观看国产wwwa级羞羞视频 | 久久精品免费一区二区三 | 99精品国产成人一区二区 | 国产成人精品久久 | 亚洲国产精品久久久 | 91精品综合久久久久久五月天 | 久草影视在线 | 99精品热视频 | 国外成人在线视频 | 亚洲激情av | 黄网站涩免费蜜桃网站 | 精品久久不卡 | 国产欧美一区二区三区国产幕精品 | 涩涩鲁亚洲精品一区二区 | 亚洲网站在线观看 | 欧产日产国产精品国产 | 毛片一区二区三区 | 久久伊人精品 | 日韩欧美国产一区二区三区 | 久久久久久久一级 | 精品国产不卡一区二区三区 | 欧美日韩国产精品一区 | 中文字幕亚洲精品 | 超碰8| av在线免费观看网址 | 一区二区三区四区免费视频 | 国产精品中文在线 | 五月婷婷婷 | 日本午夜视频 | h在线免费观看 | 久久久久国产 | 天天拍天天操 | 欧美一区在线看 | www.中文字幕.com | 日本一区二区三区在线观看 | 欧美一级片在线播放 | 黄网站免费在线观看 |