Iam trying to retrieve data from mysql database into stylesheet.php but it is not working.
main page:
<link rel="stylesheet" href="includes/dynamicstyle.php" media="screen">
stylesheet.php
<?php header("Content-type: text/css;"); ?>
<?php
require 'connect.php';
$userid = $_SESSION['uid'];
$select_query = "SELECT * FROM theme where user_id = $userid";
$primaryTextColor = '#336600';
$secondaryTextColor = '#fff';
$tertiaryTextColor = '#555';
$primaryBGColor = '.$background.';
$secondaryBGColor = '#ccc';
$tertiaryBGColor = '#000';
$primaryTextSize = '10'; //pixels
?>
#pro_theme{
color: <?php echo $primaryTextColor?>;
background: <?php echo $primaryBGColor?>;
}
#con_theme {
background: <?php echo $secondaryBGColor?>;
font-size: <?php echo 1.1*$primaryTextSize ?>px;
}
#des_theme{
background: <?php echo $secondaryBGColor?>;
font-size: <?php echo 1.1*$primaryTextSize ?>px;
}
#basic{
background: <?php echo $secondaryBGColor?>;
}
<?php
$result_select = mysql_query($select_query)or die(mysql_error());
if ($result_select){
$row = mysql_fetch_assoc($result_select);
$background = $row['background'];
}
?>
It is not working for me, I just want to know is that a right way to do or is there anything better way of doing this.
thanks.
Edit:
Thanks for the advice, its working now.

echostatements? – Crises of Identity Sep 7 at 23:44?>? – Aziz Sep 7 at 23:49