Skip to content

Instantly share code, notes, and snippets.

@eghojansu
Created January 8, 2025 09:23
Show Gist options
  • Save eghojansu/537378970cd02e1498c7fffdc2e54f3a to your computer and use it in GitHub Desktop.
Save eghojansu/537378970cd02e1498c7fffdc2e54f3a to your computer and use it in GitHub Desktop.
Copilot Code
<?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