i have a gamimng section on my site that allow the user to display a quick status of their stats using colors (blue, red, and green).
i want to generate something like this based per user. i have this so far:
<style>
.box2 {
height: 20px;
background: blue;
float:left;
width:120px;
}
.box3 {
height: 20px;
background: green;
float:left;
width:30px;
}
.box1 {
height: 20px;
background: red;
float:left;
width:140px;
}
</style>
<div>
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
</div>
should i put the css directly in the page? what will be the best way to implement this using php?
You can always use a generated file using PHP and include it as your CSS file like:
Then in this file you can use the current session to find out the user stats then generate using PHP. Don’t forget the put the header:
Example php:
You can also if you prefer use .htaccess to rewrite the file so it looks less obvious like:
So you can use:
example code:
jsfiddle: http://jsfiddle.net/g9Vrx/