I have a PHP string that contains an address and as such contains a few lines. One example could be:
$custDetails = "
123 Main Street
City
Area Code
";
Although this address is retrieved using an SQL query, not declared in PHP.
I would like to replace the go to line characters by something else, temporarily, to make modifying this string easier in another javascript function. But I'm running in to some problems. This code:
echo "
<script>
if ('$custDetails'.indexOf('\n') != -1)
alert('yes');
alert('$custDetails');
</script>
";
Becomes:
<script>
if ('123 Main Street
City
Area Code'.indexOf('
') != -1)
alert('yes');
alert('123 Main Street
City
Area Code');
</script>
after treated by PHP. The "go to lines" in the string are treated as go to line in the script tag, and as such messes up the script. Additionally, I can't detect the \n char because it is treated as a go to line, and messes up the script...
How can I make a string with multiple lines usable in javascript?
EDIT: As suggested in one of the answers, I tried replacing "\n" with 'n' in PHP before calling the javascript
$custDetailsBis = str_replace("\n", '\n', $custDetails);
echo "<script>
alert(\"$custDetailsBis\");
</script>";
I still doesn't work, output in browser:
<script>
alert("16 St Andrews Street
\nDundee
\nDD1 2EX");
</script>
Note that I know have \n that have appeared on the browser output, but there are still line breaks. Again the line breaks are causing errors in the javascript.