Created
January 8, 2025 09:23
-
-
Save eghojansu/537378970cd02e1498c7fffdc2e54f3a to your computer and use it in GitHub Desktop.
Copilot Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Sebelum line 176 | |
// default rate untuk masing-masing star = 0 | |
$rate_data = [ | |
1 => 0, | |
2 => 0, | |
3 => 0, | |
4 => 0, | |
5 => 0, | |
]; | |
// isi rating real-value | |
while ($p = mysqli_fetch_array($rate)) { | |
$rate_data[$p['rating']] = $p['jml'] | |
} | |
?> | |
<?php | |
// Line 176, output ke js (html) | |
echo '"' . implode('","', $rate_data) . '"'; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment