I have a txt file on the server which contains 10 lines of text. The text file is rewritten sometimes, and I get new lines using "\r\n". My problem shows when I want to load the lines in javascript variables. I do it like this, but this work only for numbers or for the last line of the file, because its not using the breakline tag: var x = '<?php echo $file[0]; ?>';
Ive tried to alert(x) but it`s not working.... (working only if I read the last line)
Any idead ?
| |||
|
feedback
|
|
I'm not sure I completely understand the question, but you should be able to use
As others have said, you can | |||||||
feedback
|
|
You want
But if you read the
You might consider what happens if someone decides to include a single quote in the variable with this approach. EDIT: Then you can add
| |||||||||
feedback
|
|
Thanks for all! The I solved the problem with the help of artlung and Richard JP Le Guen:
| |||
|
feedback
|