Hey everyone, If anyone has a few mins spare, it would save me last few strands of hair I have left in my head.. I am having a few problems with an echo problem here is the code below: if($approved == "y"){ echo "<title>".$city." ".$areainput."</title>"; $areainput1 = $area[2]; --------------- This above all works fine.. But I want to add a meta description like below? -------------- if($approved == "y"){ echo "<title>".$city." ".$areainput."</title>"; echo "<meta name="description" content="html content here (now php code ".$city.") and again html here" />; $areainput1 = $area[2]; --------------- How do I correctly write this code? Kind Regards Lee
if($approved == 'y'){ echo '<title>'.$city.' '.$areainput.'</title>'; echo '<meta name="description" content="html content here (now php code '.$city.') and again html here" />'; $areainput1 = $area[2]; Code (markup):
"You my friend are a bloody Diamond.. You have saved me from complete hairloss!!" Cheers my friend All the very best and a massive thank you Lee