All,
I'm working with a client that I want to have manage their own meta tags so they can change the description and keywords the search engines will see. I have the backend setup to where the keywords and description are entered into their respective columns. I then use php to pull them with a query and populate as follows:
<meta name="description" content="<? echo $meta['metaDescription']; ?>">
<meta name="keywords" content="<? echo $meta['metaKeywords']; ?>">
My question, though, is because these meta's are not hard set, will the search engines still read them or will they read the php statements in place of the actual values?
TIA
Ryan