Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

MySQL में textareas से एकाधिक पंक्ति कैसे सम्मिलित करें

आपको कुछ html त्रुटियाँ और साथ ही असुरक्षित क्वेरी निष्पादन था। इसे आजमाएं:एचटीएमएल

<form id="form1" name="form1" method="post" action="func/insert.php">
<table>
<tr>
<td>text 1</td>
<td>:</td>
<td><textarea class="custom" rows="10" cols="80" name="text1" id="text1" required></textarea></td>
</tr>
<tr>
<td>text 2</td>
<td>:</td>
<td><textarea class="custom" rows="10" cols="80" name="text2" id="text2" required>
</textarea></td>
</tr>
</table>
</form>

PHP

include"connection.php";
if(isset($_POST['text1'])){
    if(strpos($_POST['text1'], "\n")){
        $entrytext1 = explode("\n",$_POST['text1']);
    }
    else{
        $entrytext1 = array($_POST['text1']);
    }
    foreach ($entrytext1 as $linetext1){
        $stmt = $mysqli->prepare("INSERT INTO data(text1,text2)VALUES(:text1, :text2)");
        $result = $stmt->execute(array('text1' => $linetext1, 'text2'    =>  $_POST['text2']));
        if ($result){
        echo"<script>alert(\"Success ...\");window.location='../index.php'</script>";
        }
        else{
            echo"<script>alert(\"Failed ...\");self.history.back()</script>";
        }
    }
}



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. एसक्यूएल से फ़ोरैच लूप में डुप्लिकेट को अलग करें

  2. PHP स्रोत कोड को जोड़ना और फॉर्म को MySQL डेटाबेस में जमा करना

  3. डोकर:स्प्रिंग बूट और MYSQL कनेक्ट नहीं कर सकता

  4. mysql डेटा निर्देशिका स्थान

  5. मैं MySQL में कॉलम के लिए डेटा प्रकार कैसे बदलूं?