gpt4 book ai didi

javascript - php mysql 用户评分和评论系统

转载 作者:太空宇宙 更新时间:2023-11-04 09:45:12 24 4
gpt4 key购买 nike

我有下面给出的星级评级脚本。它工作正常,但是当我想在处理文件中使用 $_GET 变量时,它没有使用它。

我还想在这个脚本中使用注释,但我不能在 tuto-star-rating.php 中使用 $_POST 或 $_GET| .

我可以得到 $_GET['sid']index.php但我无法在 tuto-start-rating.php 中获取 sid .这tuto-start-rating.php通过JS调用。

在 index.php 中,url 是 index.php?sid=1

tuto-star-rating.php我想使用 $_GET 保存餐厅 ID 但无法这样做。我尝试如下,但它不接受它只接受直接输入的数字,正如您在下面的文件代码中看到的那样:

$getRest    = mysql_real_escape_string($_GET['sid']);
$query = $bdd->execute('INSERT INTO rest_rating (sr_id, media, rate, ip, user)
VALUES ('.$getRest.', '.$mediaId.', "'.$rate.'", "'.$ipaddress.'", "'.$user.'")'); // We insert the new rate

我需要帮助来使用不同的形式或通过集成来将评论系统与此代码集成。

index.php

<?php
include('comment/dbClass.php');
$bdd = new db();
?>
<style>
.no_star { display: inline-block; background: url("comment/star.png") no-repeat; width: 16px; height: 16px }
.star { display: inline-block; background: url("comment/star.png") no-repeat; background-position: 0 -16px; width: 16px; height: 16px }
.star_hover { display: inline-block; background: url("comment/star.png") no-repeat; background-position: 0 -32px; width: 16px; height: 16px }
.star_selected { display: inline-block; background: url("comment/star.png") no-repeat; background-position: 0 -48px; width: 16px; height: 16px }
</style>
<?php
function starBar($numStar, $mediaId, $starWidth) { // function with arguments: number of stars, media ID, width of the star image
global $bdd;

$getRest = mysql_real_escape_string($_GET['sid']);

$cookie_name = 'tcRatingSystem'.$mediaId; // Set up the cookie name

// We get the rate average and number of rate from the database
$query = $bdd->getOne('SELECT round(avg(rate), 2) AS average, count(rate) AS nbrRate, sr_id AS sr_id FROM rest_rating WHERE media='.$mediaId.' and sr_id = "'.$getRest.'"');
$avgCeil = round($query['average'], 0); // round above or below to show how many selected stars we display

$getJSON = array('numStar' => $numStar, 'mediaId' => $mediaId); // We create a JSON with the number of stars and the media ID
$getJSON = json_encode($getJSON);

// We create the DIV block with selected stars and unselected stars depending of the rate
$starBar = '<div id="'.$mediaId.'">';
$starBar .= '<div class="';
if( !isset($_COOKIE[$cookie_name]) ) $starBar .= 'star_bar';
$starBar .= '" rel='.$getJSON.' style="width:'.($numStar*$starWidth).'px">';

for ($i=1; $i<=$numStar; $i++) {
$starBar .= '<div class="';
if ($i <= $avgCeil) $starBar .= 'star_selected'; else $starBar .= 'star';
$starBar .= '"></div>';
}
$starBar .= '</div>';
$starBar .= '<div class="resultMedia'.$mediaId.'" style="font-size: small; color: grey">'; // We show the rate score and number of rates
if ($query['nbrRate'] == 0) $starBar .= 'Not rated yet';
else $starBar .= 'Rating: ' . $query['average'] . '/' . $numStar . ' (' . $query['nbrRate'] . ' votes)';
$starBar .= '</div>';
$starBar .= '<div class="box'.$mediaId.'"></div>'; // Return the text "Thank you for rating" when someone rate
$starBar .= '</div>';

return $starBar;
}

echo starBar(5, 59, 16); // We create star bar
?>

tuto-start-rating.php

<?php
session_start();
include('dbClass.php');
$bdd = new db();
//$getRest = mysql_real_escape_string($_GET['sid']);
$ipaddress = $_SERVER["REMOTE_ADDR"];
$user = session_id();

if($_POST) {

$mediaId = $_POST['mediaId']; // Media ID
$rate = $_POST['rate']; // Your rate

$expire = 24*3600; // 1 day
setcookie('tcRatingSystem'.$mediaId, 'voted', time() + $expire, '/'); // Place a cookie

$query = $bdd->execute('INSERT INTO rest_rating (sr_id, media, rate, ip, user)
VALUES (1, '.$mediaId.', "'.$rate.'", "'.$ipaddress.'", "'.$user.'")
'); // We insert the new rate

// We calculate the new average and new number of rate
$result = $bdd->getOne('SELECT round(avg(rate), 2) AS average, count(rate) AS nbrRate FROM rest_rating WHERE media='.$mediaId.'');

$avgCeil = round($result['average'], 0); // Round the average

// Send JSON back with the new average, the number of rate and rounded average
$dataBack = array('avg' => $result['average'], 'nbrRate' => $result['nbrRate'], 'avgCeil' => $avgCeil);
$dataBack = json_encode($dataBack);

echo $dataBack;
}
?>

tuto-star-rating.js

    function rateMedia(mediaId, rate, numStar) {
$('.box' + mediaId).html('<img src="comment/loader-small.gif" alt="" />'); // Display a processing icon
var data = {mediaId: mediaId, rate: rate}; // Create JSON which will be send via Ajax

$.ajax({ // JQuery Ajax
type: 'POST',
url: 'comment/tuto-star-rating.php', // URL to the PHP file which will insert new value in the database
data: data, // We send the data string
dataType: 'json',
timeout: 3000,
success: function(data) {
$('.box' + mediaId).html('<div style="font-size: small; color: green">Thank you for rating</div>'); // Return "Thank you for rating"
// We update the rating score and number of rates
$('.resultMedia' + mediaId).html('<div style="font-size: small; color: grey">Rating: ' + data.avg + '/' + numStar + ' (' + data.nbrRate + ' votes)</div>');

// We recalculate the star bar with new selected stars and unselected stars
var ratingBar = '';
for ( var i = 1; i <= numStar; i++ ) {
ratingBar += '<div class="';
if (i <= data.avgCeil) ratingBar += 'star_selected'; else ratingBar += 'star';
ratingBar += '"></div>';
}

$('#' + mediaId + ' .star_bar').html(ratingBar).off('mouseenter');
},
error: function() {
$('#box').text('Problem');
}
});
}

$(function () {
$('.star_bar').on('mouseenter', function overBar(event) { // Mouse enter the star bar
var relData = $.parseJSON($(this).attr('rel')); // Get JSON values: number of stars and media ID

$(this).css('cursor','pointer');

// We create a new star bar OVER the previous one with transparent stars
var newStarBar = '';
for ( var i = 1; i <= relData.numStar; i++ ) {
newStarBar += '<div class="no_star" id="' + i + '" title="' + i + '/' + relData.numStar + '" onclick="rateMedia(' + relData.mediaId + ', ' + i + ', ' + relData.numStar + '); return false;"></div>';
}
$(this).css('position', 'relative').append('<div id="over' + relData.mediaId + '" style="position:absolute; top:0; left:0;">' + newStarBar + '</div>');

// When we move the mouse over the new transparent star bar they become blue
$('#over' + relData.mediaId + ' > div').mouseover(function() {
var myRate = $(this).attr('id');
for ( var i = 1; i <= relData.numStar; i++ ) {
if (i <= myRate) $('#over' + relData.mediaId + ' #' + i).attr('class', 'star_hover');
else $('#over' + relData.mediaId + ' #' + i).attr('class', 'no_star');
}
});
});

// Mouse leaves the star bar, we remove the rating bar
$('.star_bar').on('mouseleave', function overBar(event) {
var relData = $.parseJSON($(this).attr('rel'));
$('#over' + relData.mediaId).remove();
});
});

**tuto-star-rating.php**
<?php
session_start();
include('dbClass.php');
$bdd = new db();
//$getRest = mysql_real_escape_string($_GET['sid']);
$ipaddress = $_SERVER["REMOTE_ADDR"];
$user = session_id();

if($_POST) {

$mediaId = $_POST['mediaId']; // Media ID
$rate = $_POST['rate']; // Your rate

$expire = 24*3600; // 1 day
setcookie('tcRatingSystem'.$mediaId, 'voted', time() + $expire, '/'); // Place a cookie

$query = $bdd->execute('INSERT INTO rest_rating (sr_id, media, rate, ip, user)
VALUES (1, '.$mediaId.', "'.$rate.'", "'.$ipaddress.'", "'.$user.'")
'); // We insert the new rate

// We calculate the new average and new number of rate
$result = $bdd->getOne('SELECT round(avg(rate), 2) AS average, count(rate) AS nbrRate FROM rest_rating WHERE media='.$mediaId.'');

$avgCeil = round($result['average'], 0); // Round the average

// Send JSON back with the new average, the number of rate and rounded average
$dataBack = array('avg' => $result['average'], 'nbrRate' => $result['nbrRate'], 'avgCeil' => $avgCeil);
$dataBack = json_encode($dataBack);

echo $dataBack;
}
?>

dbClass.php

<?php
class db {
private $conn;
private $host;
private $user;
private $password;
private $baseName;
private $port;
private $Debug;

function __construct($params=array()) {
$this->conn = false;
$this->host = 'localhost'; //hostname
$this->user = 'root'; //username
$this->password = ''; //password
$this->baseName = 'lepetit'; //name of your database
$this->port = '3306';
$this->debug = true;
$this->connect();
}

function __destruct() {
$this->disconnect();
}

function connect() {
if (!$this->conn) {
$this->conn = mysql_connect($this->host, $this->user, $this->password);
mysql_select_db($this->baseName, $this->conn);
mysql_set_charset('utf8',$this->conn);

if (!$this->conn) {
$this->status_fatal = true;
echo 'Connection BDD failed';
die();
}
else {
$this->status_fatal = false;
}
}

return $this->conn;
}

function disconnect() {
if ($this->conn) {
@pg_close($this->conn);
}
}

function getOne($query) { // getOne function: when you need to select only 1 line in the database
$cnx = $this->conn;
if (!$cnx || $this->status_fatal) {
echo 'GetOne -> Connection BDD failed';
die();
}

$cur = @mysql_query($query, $cnx);

if ($cur == FALSE) {
$errorMessage = @pg_last_error($cnx);
$this->handleError($query, $errorMessage);
}
else {
$this->Error=FALSE;
$this->BadQuery="";
$tmp = mysql_fetch_array($cur, MYSQL_ASSOC);

$return = $tmp;
}

@mysql_free_result($cur);
return $return;
}

function getAll($query) { // getAll function: when you need to select more than 1 line in the database
$cnx = $this->conn;
if (!$cnx || $this->status_fatal) {
echo 'GetAll -> Connection BDD failed';
die();
}

mysql_query("SET NAMES 'utf8'");
$cur = mysql_query($query);
$return = array();

while($data = mysql_fetch_assoc($cur)) {
array_push($return, $data);
}

return $return;
}

function execute($query,$use_slave=false) { // execute function: to use INSERT or UPDATE
$cnx = $this->conn;
if (!$cnx||$this->status_fatal) {
return null;
}

$cur = @mysql_query($query, $cnx);

if ($cur == FALSE) {
$ErrorMessage = @mysql_last_error($cnx);
$this->handleError($query, $ErrorMessage);
}
else {
$this->Error=FALSE;
$this->BadQuery="";
$this->NumRows = mysql_affected_rows();
return;
}
@mysql_free_result($cur);
}

function handleError($query, $str_erreur) {
$this->Error = TRUE;
$this->BadQuery = $query;
if ($this->Debug) {
echo "Query : ".$query."<br>";
echo "Error : ".$str_erreur."<br>";
}
}
}
?>

最佳答案

来自 your comment ,

I can get sid in index.php but i can not get sid in tuto-start-rating.php. This tuto-start-rating.php is called through JS

由于您将 JavaScript 作为外部文件包含在内,因此您不能在 tuto-star-rating.js< 中使用/访问像 $_GET['sid'] 这样的 PHP 变量/em> 文件。您需要按以下方式更改您的 index.phptuto-star-rating.js 文件,

index.php

index.php 页面中包含 tuto-star-rating.js 文件之前,添加以下行,

<script>var sid = "<?php echo $_GET['sid']; ?>";</script>
// include your tuto-star-rating.js file

tuto-star-rating.js

您需要按以下方式更改您的 AJAX 请求,

function rateMedia(mediaId, rate, numStar) {

// your code

$.ajax({
type: 'POST',
url: 'comment/tuto-star-rating.php?sid=' + sid,

// your code
});
}

这样,您就可以使用$_GET访问tuto-star-rating.php页面中的sid超全局,像这样:

$getRest  = mysql_real_escape_string($_GET['sid']);

旁注: 不要使用 mysql_* 函数,它们从 PHP 5.5 开始被弃用,并在 PHP 7.0 中被完全删除。使用 mysqlipdo反而。 And this is why you shouldn't use mysql_* functions .

关于javascript - php mysql 用户评分和评论系统,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39537771/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com