| Posted by bish on 07/05/03 11:40 
On 21 Feb 2006 05:27:31 -0800, gogaz@rediffmail.com wrote:
 >>>Hi,
 >>>
 >>>I tried
 >>>error_reporting = E_ALL & ~E_NOTICE
 >>>in php.ini but its still the same. Basically its like a content managed
 >>>site and all the page content is saved in the database. So when i edit
 >>>the page and enter £ (pound sign) in the text and save it, and when i
 >>>preview the page it shows ?(question mark) instead of £ (pound sign)
 >>>
 >>>Please help...
 >>>
 >>>Regards
 Why do you have to have the pound sign saved in the database? Make
 your mysql field  decimal 12,2  (which will take care of input
 without a decimal point) and have the pound sign (written as
 £) in the php output script.
 [Back to original message] |