Hi,
So I am calling an API written in VB.NET from PHP and passing it some text. I want to insert into that text two linebreaks.
I understand that in VB.NET, the character codes for a linebreak are Chr(10)
and Chr(13)
. How can I represent those in PHP?
TIA.