<head> <?php include("conn/conn.php"); $set_query="SELECT * FROM settings "; $get_setting=mysql_query($set_query); while($set=mysql_fetch_array($get_setting)){ extract($set); $title=$set['site_title']; $tagline=$set['site_tagline']; ?> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <link href="style.css" rel="stylesheet" type="text/css" media="screen" /> <title><?php echo $title; ?></title></head> <body> <div id="wrapper"> <div id="logo"> <h1><?php echo $title; ?></h1> <p><em><?php echo $tagline; ?></em></p> </div> <hr />
Now this code on line 13 <title><?php echo $title; ?></title></head>
is not working gives error please solve this problem...