ofi Posted January 31, 2007 Share Posted January 31, 2007 hiwhy does the letter [b]Þ[/b] not show, i only get simpolsit says [code]�etta gallery inniheldur 2 myndir.[/code] should be [code]Þetta gallery inniheldur 2 myndir.[/code]see here, http://www.koddinn.com/myndir/i am using wscite editor Link to comment https://forums.phpfreaks.com/topic/36416-solved-letter-not-showing/ Share on other sites More sharing options...
rantsh Posted January 31, 2007 Share Posted January 31, 2007 When copy & pasted in Dreamweaver it translated to Þ hope it helps you Link to comment https://forums.phpfreaks.com/topic/36416-solved-letter-not-showing/#findComment-173241 Share on other sites More sharing options...
Jessica Posted January 31, 2007 Share Posted January 31, 2007 so you'll have to use that instead. When the users enter text, run it through htmlentities to catch those. Link to comment https://forums.phpfreaks.com/topic/36416-solved-letter-not-showing/#findComment-173242 Share on other sites More sharing options...
ofi Posted January 31, 2007 Author Share Posted January 31, 2007 dont understand, never used Dreamweaver, just got it now, how do i do this Link to comment https://forums.phpfreaks.com/topic/36416-solved-letter-not-showing/#findComment-173521 Share on other sites More sharing options...
neylitalo Posted January 31, 2007 Share Posted January 31, 2007 Dreamweaver never comes into the equation, he's just telling you how he determined the HTML entity. (Þ) Whenever you want to use that character, enter Þ or run the input through htmlentities() before putting it in the database.[code]$input = $_POST['input];$input = htmlentities($input);[/code] Link to comment https://forums.phpfreaks.com/topic/36416-solved-letter-not-showing/#findComment-173523 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.