How to update TCPDF version from 4.0.027_PHP4 to latest?
2 08/08/2016 06:10:03 am
Re: Saving text with apostrophe converts to 's (20 replies, posted in Translations)
@apmuthu
Sorry I editted my post earlier. It worked. I was looking at the wrong PDF file. Thanks
3 08/08/2016 05:29:03 am
Re: Saving text with apostrophe converts to 's (20 replies, posted in Translations)
@itronics
Oh I see. Thank you for nice explanation.
@apmuthu
I tried without mb_convert_encoding() and without your earlier post's fix, It worked!.
4 08/05/2016 09:49:12 am
Re: Saving text with apostrophe converts to 's (20 replies, posted in Translations)
Yes, the db_escape() role is crucial. But actually saving the decoded apostrophe is the problem. When I look the sql_trail table to see how the query looks like. It showed like this
"UPDATE sys_prefs SET value = 'Carmen's ' WHERE name='coy_name'"
-- which is I think the proper: before the db_escape()
UPDATE sys_prefs SET value = 'Carmen's' WHERE name='coy_name';
-- after the db_escape() it should like this
UPDATE sys_prefs SET value = 'Carmen's ' WHERE name='coy_name'
Sorry for my bad english.
5 08/04/2016 09:49:23 am
Re: Saving text with apostrophe converts to 's (20 replies, posted in Translations)
It works! I also think that db_escape() might be doing something. Thank you for your immediate response.
6 08/04/2016 06:09:10 am
Re: Saving text with apostrophe converts to 's (20 replies, posted in Translations)
Yes it displayed the apostrophe without using the mb_convert_encoding() funtion. How can I help? I'm not that very skilled on PHP but I'll do what I can to help.
7 08/04/2016 05:36:28 am
Re: Saving text with apostrophe converts to 's (20 replies, posted in Translations)
On header2.inc line 81 $this->company['coy_name'], cause our company name has apostrophe on its name. I haven't tested it on other reports. But the problem why it keeps decoding the apostrophe when saving it to database. Note that I've already changed the charset to utf-8.
8 08/02/2016 02:47:41 am
Re: Saving text with apostrophe converts to 's (20 replies, posted in Translations)
It happens when generating PDF file. I changed the charset on mysql and use html_entity_decode but no luck. I use the mb_convert_encoding and it works!
I'm still confused why this is only happening on PDF file but on other things apostrophe is never been a problem.
9 08/01/2016 07:41:57 am
Topic: Saving text with apostrophe converts to 's (20 replies, posted in Translations)
How can I fix this apostrophe cause it looks like it when saving text with apostrophe, it converts to 's
10 08/01/2016 05:06:50 am
Topic: Tutorial on making own report (1 replies, posted in Reporting)
Is there any tutorial to make my own report? I have knowledge on PHP programming but some other variables are hard to understand.
11 07/18/2016 07:07:02 am
Topic: How to include others Discount and VAT on reports? (1 replies, posted in Banking and General Ledger)
In some cases, we acknowledge seniors and pwd discounts. In addition, the breakdown of of Total Amount in reports. How can I achieve that?
12 07/11/2016 09:56:08 am
Re: Is accounts on GL Accounts are Internationally used? (2 replies, posted in Banking and General Ledger)
I see. I will use the english version to be formal. Thanks for your immediate answer.
13 07/11/2016 09:52:50 am
Topic: Customer Reference? (1 replies, posted in Accounts Receivable)
What will be the value of this field Customer Reference? Is this system automated or users will input?
14 07/08/2016 02:55:26 am
Topic: Is accounts on GL Accounts are Internationally used? (2 replies, posted in Banking and General Ledger)
Just want to ask if accounts on GL Accounts are Internationally used. I'm from Philippines and not much knowledgeable on accounting stuffs. Thanks