Hi, I upload content on my site using a form in the back end. I use php script to upload content in mysql database and then retrieve it on my website. Now what the problem is when I upload, pound sign £(inside the content) display as "?" in the content which is retrieved on the site. And this ' also becomes question mark on the website . This really looks bad in website content. Is there any solution to this? Any help would be greatly appreciated. Thanks!
To store ' in a SQL database, store '' (two of them). You'll retrieve '. As far as £, you can just store (and display) £ On a web page, that produces the £ symbol.