Hello again, I have another question/idea which I hope is an easy one. Is it possible to put multiple variables in a language key. I know how to do a single variable. in my code:
_t("_Keyname", $variable_from_sql_script)
and create a key called _Keyname:
This is the result of the variable {0}
Now, I have this:
(Again, this is a report generated by <?php echo $title ?> <strong><?php echo $FirstName; ?></strong> <strong><?php echo $LastName ?></strong> on <strong><?php echo $dateend ?></strong> ).
And was curious if there was a way to use multiple variables ($title, $FirstName, $LastName, $dateend) in a language key like this:
(Again, this is a report generated by {0} <strong>{1}</strong> <strong>{2}</strong> on <strong>{3}</strong> ).
but, unfortunately, I can only get 3 variables to display, ( {3} displays as {3}). Is there someplace where I need to increase the number of variables than can be used, or is this just the way it is.
Any help would be appreciated, and again, Thanks in advance.