Jump to content

Special characters


vipsa

Recommended Posts

It might also be helpful to show some code. One thing to look for is if the special character is enclosed in single quotes. For example, the following doesn't work:

 

<?php
print 'here\n';
?>

 

It needs to be changed to double quotes.

 

<?php
print "here\n";
?>

Link to comment
https://forums.phpfreaks.com/topic/272643-special-characters/#findComment-1403013
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.