if (mysqli_connect_errno()==0)
{ // if successfully connected
$sent_dt=$_POST['scts'];
// important: escape string values
$txt=mysqli_real_escape_string($con, $_POST['text']);
$snd=mysqli_real_escape_string($con, $_POST['sender']);
// creating an sql statement to insert the message into the SMS_IN table
$sql="INSERT INTO SMS_IN(studentID,lastname,firstname,class) VALUES ('34','Lekan','Balogun','Grade8')";
// executing the sql statement
$insert_sms_success = mysqli_query($con,$sql);
// closing the connection
mysqli_close($con);
}
請問,我是新來的php,我從我的項目的朋友那裏得到了這段代碼。我想在插入我的數據庫之前使用空格(例如34 Lekan Balogun Grade8)將文本消息拆分。我的表格字段是:StudentID,LastName,FirstName,Class,因此我希望它以ID 34,Lekan for Lastname,Balogun for Firstname和Grade8的身份進入課程。感謝預期。如何在發佈到mysql之前使用空格拆分字符串
爆炸e()on「」字符 –
您可以在空間上爆炸,但如果有任何空格不在字符串中,那麼它將不起作用。 –