Echo specific column date from row id

HI, im building a rather large 8 language site. I have alot of keyword links, titles and phrases around the site that need to be populated in various languages. What i done in the past is simply include a php file and echo out the string value.

Is it possible to query a table (select all) and echo the content of a specifc ids throughout the pages. Eg structure:

tid > keyword_en > keyword_it > keyword_ru

then…

<?php echo $row['keyword_'.$lang]; WHERE tid ='x'?> <?php echo $row['keyword_'.$lang]; WHERE tid ='y'?>

etc etc

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.