SQL插入换行符

时间:2013-10-01 00:40:11

标签: php

如何通过插入mysql的变量插入换行符?

$delattn = $row_Recordset_delattn['Cus_fname'].' '.$row_Recordset_delattn['Cus_lname'].',
 '.$row_Recordset_delattn['Cus_designation'].', 
  

LINE BREAK

'.$row_Recordset_delattn['Cus_department'];

1 个答案:

答案 0 :(得分:0)

只需在想要换行的地方添加“\ n”

$delattn = $row_Recordset_delattn['Cus_fname'].' '.$row_Recordset_delattn['Cus_lname'].','.$row_Recordset_delattn['Cus_designation'].', \n     '.$row_Recordset_delattn['Cus_department'];

使用PHP的

nl2br() 

将该换行符转换为

的功能
<br /> 
HTML中的

标记。更多信息here