1つのフィールドに複数の値を挿入します:
単一のフィールドにフラット番号を挿入するには、implode
を使用します 値はコンマで区切られます。
$r=implode(",",$available);
$insert=mysql_query("insert into flatdetails(available) value ('$r')")
データベースの使用から値を取得するには、explode
すべての値を分離します。
$ i =explode( "、"、$ r);を使用して値を取得する場合
<?php
$select_tbl=mysql_query("select * from flatdetails",$conn);
while($fetch=mysql_fetch_object($select_tbl))
{
$r=$fetch->available;
$i=explode(",",$r);
echo $i[0]."</br>";
}
?>