How To Create Youtube like Rating Using PHP/MySQL
Submitted by argie on Wednesday, January 16, 2013 - 11:48.
Hi everyone, this tutorial will teach you on how to create a youtube like rating or likes and dislikes rating using php and mysql. To start this tutorial lets follow the steps bellow to create this easy and nice code.
That's it you've been successfully created your youtube like rating system.
Step1: Create Our Database and its Table:
First step is to create our table in database to store the likes and dislikes votes. To create a database: 1. Open phpmyadmin 2. Click create table and name it as "database". 3. After creating a database name, click the SQL and paste the below code.- CREATE TABLE IF NOT EXISTS `messages` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `up` int(11) NOT NULL,
- `down` int(11) NOT NULL,
- `messages` varchar(300) NOT NULL,
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
Step2: Create Our Form:
This Step we will create our form that display our voting process. To create copy the code below and paste it to your editor and save as "index.php".- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
- <title>votedemo</title>
- <script type="text/javascript" src="http://ajax.googleapis.com/
- ajax/libs/jquery/1.4.2/jquery.min.js"></script>
- <script type="text/javascript">
- $(document).ready(function()
- {
- $(".like").click(function()
- {
- var id=$(this).attr("id");
- var name=$(this).attr("name");
- var dataString = 'id='+ id + '&name='+ name;
- $("#votebox"+id).slideDown("slow");
- $("#flash"+id).fadeIn("slow");
- $.ajax
- ({
- type: "POST",
- url: "rating.php",
- data: dataString,
- cache: false,
- success: function(html)
- {
- $("#flash"+id).fadeOut("slow");
- $("#content"+id).html(html);
- }
- });
- });
- });
- </script>
- <style>
- body
- {
- font-family:Arial, Helvetica, sans-serif;
- font-size:13px;
- }
- a
- {
- text-decoration:none
- }
- a:hover
- {
- text-decoration:none
- }
- #votebox
- {
- border:solid 1px #dedede; padding:3px;
- display:none;
- padding:15px;
- width:700px;
- -moz-border-radius: 6px;
- -webkit-border-radius: 6px;
- }
- .close
- {
- color:#333
- }
- #greebar
- {
- float:left;
- background-color:#aada37;
- border:solid 1px #698a14;
- width:0px;
- height:12px;
- }
- #redbar
- {
- float:left;
- background-color:#cf362f;
- border:solid 1px #881811;
- width:0px;
- height:12px;
- }
- #flash
- {
- display:none;
- font-size:10px;
- color:#666666;
- }
- #close
- {
- float:right; font-weight:bold; padding:3px 5px 3px 5px; border:solid 1px #333;
- -moz-border-radius: 6px;
- -webkit-border-radius: 6px;
- }
- h1
- {
- font-family:'Georgia', Times New Roman, Times, serif;
- font-size:36px;
- color:#333333;
- }
- </style>
- </head>
- <body>
- <?php
- include('db.php');
- {
- ?>
- <div style="margin:50px">
- <?php echo $row['messages'] ?><br>
- <a href="#" class="like" id="<?php echo $row['id'] ?>" name="up">Like</a> -- <a href="#" class="like" id="<?php echo $row['id'] ?>" name="down">Dislike</a>
- <div id="votebox<?php echo $row['id'] ?>">
- <div style="height:13px">
- </div>
- <div id="content<?php echo $row['id'] ?>">
- </div>
- </div>
- </div>
- <?php
- }
- ?>
- </body>
- </html>
Step3: Create Our Database Connection:
Next step is to create a database connection and save it as "db.php". This file is used to connect our form to database. This file serves as a bridge between our form and our database.- <?php
- $mysql_hostname = "localhost";
- $mysql_user = "root";
- $mysql_password = "";
- $mysql_database = "database";
- ?>
Step4: Writing our script that updates our votes:
Copy the code bellow and save it as "rating.php".- <?php
- include("db.php");
- if($_POST['id'])
- {
- $up_value=$row['up'];
- $down_value=$row['down'];
- $total=$up_value+$down_value;
- $up_per=($up_value*100)/$total;
- $down_per=($down_value*100)/$total;
- ?>
- <div style="margin-bottom:10px">
- <b>Ratings for this blog</b> ( <?php echo $total; ?> total)
- </div>
- <table width="700px">
- <tr>
- <td width="30px"></td>
- <td width="60px"><?php echo $up_value; ?></td>
- <td width="600px"><div id="greebar" style="width:<?php echo $up_per; ?>%"></div></td>
- </tr>
- <tr>
- <td width="30px"></td>
- <td width="60px"><?php echo $down_value; ?></td>
- <td width="600px"><div id="redbar" style="width:<?php echo $down_per; ?>%"></div></td>
- </tr>
- </table>
- <?php
- }
- ?>
Add new comment
- 161 views