View Single Post
Old 09-15-2012, 04:26 PM  
EN1GMA
Confirmed User
 
EN1GMA's Avatar
 
Industry Role:
Join Date: Nov 2005
Posts: 1,251
Little PHP question

Hello guys,

Maybe you can help me with a little question about PHP...
Im starting to program myself, and Im now making one of my websites multi-language.

Can I use this code inside the <title> tags?
PHP Code:
<title><?php echo $lang['TITLE']; ?></title>
And this in meta tags?
PHP Code:
<meta name="description" content="<?php echo $lang['DES']; ?>" />
<meta name="keywords" content="<?php echo $lang['KEY']; ?>" />
Is thos good, bad or equal for SEO?
I just dont want to screw my website position on search engines... :-)

Sorry for the newbie question..

--------------------------------
EDIT
--------------------------------

Btw, Im adding this code in the top of my php files:
PHP Code:
<?php include("lang/en.php");?>
Im doing this well?
Or is better to use this?
PHP Code:
<html lang="en-US" ... 
Or this is not to use to use multi language?

If yes, what is the code to show the text that I want?

Thanks!
EN1GMA is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook