-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathexample.php
24 lines (20 loc) · 1 KB
/
example.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="Description" content="" />
<title>ColorRating Example</title>
<!-- Core Files. Change the hyperlink references to reflect your site structure. Note, this must also be updated in the ratings.js file. -->
<link rel="stylesheet" type="text/css" href="rating/rating.css" media="screen"/>
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">google.load("jquery", "1.3.2");</script>
<script type="text/javascript" src="rating/rating.js"></script>
<?php include('rating/rating.php'); ?>
</head>
<body>
<!-- Replace 'test1' with a unique name. Repeat this for every item you want to score. -->
<?php rating_form("test1"); ?>
<?php rating_form("test2"); ?>
<?php rating_form("test3"); ?>
</body>
</html>