MySQL でテキストエリアからデータベースに入力しました。そのテキストエリアで、キャリッジ リターンを数回入力しました。データベースからそのデータを抽出しようとするたびに、単純な行が表示され、改行で入力を指定すると、データまたはテキストをどのように取得できますか?
$query2 = new Bin_Query();
$sql2="select * from `product_table` where product_id='".$_GET['product_id']."'";
if($query2->executeQuery($sql2))
$product_records = $query2->records;
$output['product_details']=$product_records[0]['product_details'];
それが私がデータを取得した方法です。