what is "vbCrLf"? PLEASE HELP!!!
I'm converting a page of ASP into PHP and I've stumbled onto something I've never come across in ASP. Whoever coded the ASP is trying to format a message into an email message that makes sense to a reader.
$a = "A request form has been filled out and submitted" & vbCrLf
$a = $a & "by " $company & $email & vbCrLf
$a = $a & "on " & date("F d, Y") & " at " & date("H:i:s") & "." & vbCrLf & vbCrLf
$a = $a & "The following:" & vbCrLf & vbCrLf
$a = $a & "Snack Mixes-" & vbCrLf & vbCrLf
This is just a sampling. What is it doing? If it is a specific function what would I use that is similar in PHP? If I know what it does I can find out at least. Is it a line break or something? The code above is partly converted to PHP as you see the form elements aren't request.form. What is the "vbCrLf" part of it?
Please Help