Yo te recomiendo separar el html del php, y para hacer esto, guarda todos los datos en variables... ejemplo:
Código PHP:
while ($row = mysql_fetch_assoc($resultado)){
$variable1 = $row['dato1']
$variable2 = $row['dato2']
etc...
}
Después en el html solo llama a la varible correspondiente... ejemplo:
Código HTML:
<meta name="keywords" content="<?php echo $varible1; ?>"/>
<meta name="description" content="<?php echo $varible2; ?>"/>