adytzul89
adytzul89

Reputation: 67

Text translation from the database by codeigniter

Use Codeigniter library with language, in the language folder: English, French, etc.

I want to use in database:

idproduct | ProductName | ProductNameFR | ProductNameDE

Depending on the selected language to take the table to be.

I tried to do like this: /application/language/English/translateen.php

$lang ['ProductName'] = '$info['.'LocatieAdresa'.']; //but not work

What other methods recommended to be able to translate the data from the database?

Upvotes: 1

Views: 151

Answers (1)

BlogSER
BlogSER

Reputation: 73

$lang ['ProductName'] = $info['LocatieAdresa'];

Upvotes: 1

Related Questions