how to add an average rating of topic as picture star ?
Asked
Active
Viewed 95 times
1 Answers
0
Well, I have no idea what your code does - but you could do something like
<img id="image" src="#">
and then in a java script file put
var x = value;
document.getElementById("image").src = 'url/default/starts-'x'.gif";

Alexander Craggs
- 7,874
- 4
- 24
- 46
-
Damn, I was wondering how I was not understanding your code - Now it just hit me ;) I'm afraid I don't know PHP. – Alexander Craggs Aug 13 '14 at 22:18
-
may otherwise ... how to make different image for different values? – sssss Aug 13 '14 at 22:49
-
Creating images is quite hard to do automatically - I would suggest creating all of the images and naming them in a logical format, such as 1.gif 2.gif 3.gif. – Alexander Craggs Aug 16 '14 at 13:42