I have doubt in php ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I have doubt in php ?

I want to create new text file through php in which I want every string in new line.why \n is not working?

9th Jun 2020, 3:35 PM
Pankaj Shah
Pankaj Shah - avatar
3 Answers
+ 1
Please show your code here so that we can help you https://www.sololearn.com/post/75089/?ref=app
9th Jun 2020, 3:38 PM
Gordon
Gordon - avatar
0
<?php var_dump($_POST); session_start(); if (isset($_SESSION['username'])) { $pth=$_SESSION['username'].'/'.$_POST['title']; $fop=fopen($pth,'a'); fwrite($fop,$_POST['article']); $pth=$_SESSION['username'].'/filedetail.txt'; $fop=fopen($pth,'a+'); $str='\n'.$_POST['title']; fwrite($fop,$str); } ?>
9th Jun 2020, 5:14 PM
Pankaj Shah
Pankaj Shah - avatar
9th Jun 2020, 5:18 PM
Pankaj Shah
Pankaj Shah - avatar