Serious Error On My PHP Line Code - Programming - Nairaland
Nairaland Forum › Science/Technology › Programming › Serious Error On My PHP Line Code (902 Views)
| Serious Error On My PHP Line Code by keleobasi(op): 8:42am On Dec 18, 2013 |
I have the code below in my php work but it shows error.
the trailing backslash (\) before the closing double quote (" makes the PHP see it that the string is not yet finished. Someone help |
| Re: Serious Error On My PHP Line Code by adewasco2k(m): 10:12am On Dec 18, 2013 |
keleobasi: I have the code below in my php work but it shows error.Simple: use double backslash, backslash in php denotes and escape character. So you will use a backslash to escape the backslash. ![]() |
| Re: Serious Error On My PHP Line Code by keleobasi(op): 12:41pm On Dec 18, 2013 |
Thank you Adewasco2k |
| Re: Serious Error On My PHP Line Code by Nobody: 6:10pm On Dec 18, 2013 |
why not use relative paths? e.g it will give you less headache when you want to use a web host |
| Re: Serious Error On My PHP Line Code by adewasco2k(m): 7:23pm On Dec 18, 2013 |
webdezzi: why not use relative paths?That is not even his problem, backslash just before the single or double will escape the quote there by giving error, so he needs a fix to that even if he applies your way, which truly will help him when uploading to a host |
| Re: Serious Error On My PHP Line Code by Eesyboi: 12:59pm On Dec 19, 2013 |
webdezzi: why not use relative paths?Thats right, using relative paths is a good coding practise. And he should use the slash / instead of back slash \? |
| Re: Serious Error On My PHP Line Code by Najwal: 8:23pm On Dec 29, 2013 |
adewasco2k: That is not even his problem, backslash just before the single or double will escape the quote there by giving error, so he needs a fix to that even if he applies your way, which truly will help him when uploading to a host. |
| Re: Serious Error On My PHP Line Code by hobyner(m): 11:22pm On Jan 06, 2014 |
webdezzi: why not use relative paths?Abi? Less stress. Y write all dat long stuff. |
How To Improve My Php Skills • My Php Diary • How Do I Install Php, My Sql To Kit Start My Php Programming Lesson. • 2 • 3 • 4
What Is The Meaning Of Hacked By A.l.t On Www.funmiquadrionline.com? • As An Agric Tech Graduate With Java Knowledge, What Are My Chances? • You Want A Powerful Website For Your Business/brand? See Our 5d's Of Web Develop
makes the PHP see it that the string is not yet finished. Someone help