
Here’s an easy way to display a simple percentage graph using PHP to work out the percentages and do the maths and CSS to display the data on our page. Here’s the demo.
First you need to copy the CSS below into the head of your page, you can style this to suit your needs once we have the PHP in place to render our graph.
.clear{ clear:both;} .graphcont { padding-top:10px; color:#000; font-weight:700; float:left } .graph { float:left; margin-top:10px; background-color:#cecece; position:relative; width:280px; padding:0 } .graph .bar { display:block; position:relative; background-image:url(images/bargraph.gif); background-position:right center; background-repeat:repeat-x; border-right:#538e02 1px solid; text-align:center; color:#fff; height:25px; font-family:Arial, Helvetica, sans-serif; font-size:12px; line-height:1.9em } .graph .bar span { position:absolute; left:1em }I used this graph on a project that required users to rate a video. They could give the video a plus or a minus rating, the values are then converted into percentages, the plus percentage is then put into the CSS width of the div, creating the bar graph, in my previous project I had two graphs to represent how many plus votes and how many minus votes were cast, this is just a simple example of how to create a dynamic graph with PHP.
$plus = 138; $minus = 59; $totalnumber = $plus + $minus; $pluspercent = round(($plus / $totalnumber) * 100); $minuspercent = round(($minus / $totalnumber) * 100); $total = round($plus + $minus); $totalVotes += $total; echo '<div class="rating"><div class="graphcont">The average rating of '.$pluspercent.'% is based on '.$totalVotes.' votes<div class="graph"><strong class="bar" style="width:'.$pluspercent.'%;">'.$pluspercent.'%</strong></div></div> </div> <div class="clear"></div> ';
finally found it! thanks for this code really appreciate it
)
Pingback: Using PHP and CSS to make a simple graph | imluxin
thanks dude, i know the post is old but this piece of code is exactly what i was looking for! such simplicity and such a perfect result!
Pingback: 16 Usable CSS Graph and Bar Chart Tutorials and Techniques « RPL Class
Pingback: 185+ Very Useful and Categorized CSS Tools, Tutorials, Cheat Sheets | tripwire magazine
I’ve been looking for something like this for the past couple of weeks. Here at work, we’re installing a 42″ tv to display current production reports. This code was exactly what I was looking for. Thank you for sharing!
Pingback: 155+ Mega CSS Roundup of Tools, Tutorials, Cheat Sheets etc. | tripwire magazine
Pingback: 75+ Tools for Visualizing your Data, CSS, Flash, jQuery, PHP | Afif Fattouh - Web Specialist
Pingback: 70 + Tools for Visualizing your Data, CSS, Flash, jQuery, PHP | tripwire magazine
Pingback: Are you want to create CSS Bar Graphs and Star Rater?
I used this method in my school project, you can see it @ http://bit.ly/11Aa8s
Pingback: tripwire magazine | tripwire magazine
Pingback: 50+ Essential Techniques and Tools for Visualizing your Data | tripwire magazine
Pingback: 16 Usable CSS Graph and Bar Chart Tutorials and Techniques - Code Index
Bookmarked! Thank you!
Pingback: 16 Usable CSS Graph and Bar Chart Tutorials and Techniques « All things beautiful
Pingback: 16 Usable CSS Graph and Bar Chart Tutorials and Techniques | guidesigner.com
Designer and web developer, Co-founder and Technical Director at Harkable.com London. Previously I worked at InMobi, Spotify and MySpace. Interests include photography and making short videos. Also an avid F1 fan. I also run Mega Infographics for your daily dose of the best infographics.
Follow us on Twitter and get in-stream updates.
Subscribe to all the Papermashup tutorials and articles straight to your RSS reader.
Sign up and get all the Papermashup tutorials straight to your inbox.
21 discussions around Using PHP and CSS to make a simple graph