Комментарии:
Those who here in 2030 👋
ОтветитьMy Aunt loves Post Malone and she's a big fan and she went to the Post Malone concert every time I listen to Post Malone I think of my Aunt and my family that live in Georgia that listen to it and it's so awesome 😎 I live in New York I'm a Post Malone fan too and I love it 🥰🥰🥰🥰🥰
ОтветитьAnyone in 2010
ОтветитьMe
Ответить🎉🎉🎉
ОтветитьPM🎉🎉🎉
Ответить❤❤❤❤❤❤
ОтветитьFALL OUT BOY MENTIONED
ОтветитьHis new songs suck ahh, Stick to rapping bud we miss this era
ОтветитьThis is my favorite song to sing at karaoke❤
Ответить2025 all the way
ОтветитьYes I am in 2025
ОтветитьWow
Ответить<?php
include("sambungan.php");
include("jurujual_menu.php");
if (isset($_POST["submit"])) {
$idpelanggan = $_POST["idpelanggan"];
$password = $_POST["password"];
$namapelanggan = $_POST["namapelanggan"];
$sql = "update pelanggan set password = '$password', namapelanggan = '$namapelanggan'
where idpelanggan = '$idpelanggan'";
$result = mysqli_query($sambungan, $sql);
if ($result == true)
echo "<h4>Berjaya kemaskini</h4>";
else
echo "<h4>Ralat : $sql<br>".mysqli_error($sambungan)."</h4>";
}
if (isset($_GET["idpelanggan"]))
$idpelanggan = $_GET["idpelanggan"];
$sql = "select * from pelanggan where idpelanggan = '$idpelanggan'
";
$result = mysqli_query($sambungan, $sql);
while($pelanggan = mysqli_fetch_array($result)) {
$namapelanggan = $pelanggan["namapelanggan"];
$password = $pelanggan["password"];
}
?>
<link rel="stylesheet" href="aborang.css">
<link rel="stylesheet" href="abutton.css">
<h3 class="panjang">KEMASKINI PELANGGAN</h3>
<form class="panjang" action="pelanggan_update.php" method="post">
<table>
<tr>
<td>ID Pelanggan</td>
<td><input type="text" name="idpelanggan" value="<?php echo $idpelanggan; ?>"></td>
</tr>
<tr>
<td>Nama Pelanggan</td>
<td><input type="text" name="namapelanggan" value="<?php echo $namapelanggan; ?>"></td>
</tr>
<tr>
<td>Password</td>
<td><input type="text" name="password" value="<?php echo $password; ?>"></td>
</tr>
</table>
<button class="update" type="submit" name="submit">Update</button>
</form>
<?php
include("sambungan.php");
include("jurujual_menu.php");
?>
<link rel="stylesheet" href="asenarai.css">
<table class="pelanggan">
<caption>SENARAI NAMA PELANGGAN</caption>
<tr>
<th>ID</th>
<th>Nama</th>
<th>Password</th>
<th colspan="2">Tindakan</th>
</tr>
<?php
$sql = "select * from pelanggan";
$result = mysqli_query($sambungan, $sql);
while($pelanggan = mysqli_fetch_array($result)) {
$idpelanggan = $pelanggan["idpelanggan"];
echo "<tr> <td>$pelanggan[idpelanggan]</td>
<td class='nama'>$pelanggan[namapelanggan]</td>
<td>$pelanggan[password]</td>
<td>
<a href='pelanggan_update.php?idpelanggan=$idpelanggan'>
<img src='imej/update.png'>
</a>
</td>
<td>
<a href='javascript:padam(\"$idpelanggan\");'>
<img src='imej/delete.png'>
</a>
</td>
</tr>";
}
?>
</table>
<script>
function padam(id) {
if (confirm("Adakah anda ingin padam") == true) {
window.location="pelanggan_delete.php?idpelanggan=" + id;
}
}
</script>
2025 anyone?
Ответить<?php
include("sambungan.php");
include("jurujual_menu.php");
if (isset($_POST["submit"])) {
$idpelanggan = $_POST["idpelanggan"];
$password = $_POST["password"];
$namapelanggan = $_POST["namapelanggan"];
$sql = "insert into pelanggan values('$idpelanggan', '$password', '$namapelanggan')";
$result = mysqli_query($sambungan, $sql);
if ($result == true)
echo "<h4>Berjaya tambah</h4>";
else
echo "<h4>Ralat : $sql<br>".mysqli_error($sambungan)."</h4>";
}
?>
<link rel="stylesheet" href="aborang.css">
<link rel="stylesheet" href="abutton.css">
<main>
<h3 class="panjang">BORANG TAMBAH PELANGGAN</h3>
<form class="panjang" action="pelanggan_insert.php" method="post">
<table>
<tr>
<td class="warna">ID Pelanggan</td>
<td><input required type="text"
name="idpelanggan" placeholder="cth: P065"
pattern="[A-Z0-9]{4}"
oninvalid="this.setCustomValidity('Sila masukkan 4 aksara')"
oninput="this.setCustomValidity('')"
<?php
$sql = "SELECT * FROM pelanggan ORDER BY idpelanggan DESC LIMIT 1";
$result = mysqli_query($sambungan, $sql);
$bilrekod = mysqli_num_rows($result);
if ($bilrekod > 0) {
$pelanggan = mysqli_fetch_array($result);
$idpelanggan = ++$pelanggan["idpelanggan"];
}
else
$idpelanggan = "P001";
echo "value = '$idpelanggan'";
?>
>
</td>
</tr>
<tr>
<td class="warna">Nama Pelanggan</td>
<td><input type="text" name="namapelanggan" placeholder="cth: Hajar"></td>
</tr>
<tr>
<td class="warna">Password</td>
<td><input type="text" name="password" placeholder="cth: 123"></td>
</tr>
</table>
<button class="tambah" type="submit" name="submit">Tambah</button>
</form>
<br>
<center>
<button class="biru" onclick="tukar_warna(0)">Biru</button>
<button class="hijau" onclick="tukar_warna(1)">Hijau</button>
<button class="merah" onclick="tukar_warna(2)">Merah<button>
<button class="hitam" onclick="tukar_warna(3)">Hitam</button>
</center>
<script>
function tukar_warna(n) {
var warna = ["Blue", "Green", "Red", "Black"];
var teks = document.getElementsByClassName("warna");
for(var i=0; i<teks.length; i++)
teks[i].style.color=warna[n];
}
</script>
</main>
hi❤❤❤
Ответить❤❤❤❤❤❤❤❤❤❤❤❤🙂😀😃🙂
Ответить2025 anyone?
ОтветитьAnyone in 2025 ❤❤❤❤❤❤❤❤❤😊😊😊😊😊😊😊😊😊
ОтветитьA
Ответить2025 anyone?
ОтветитьIt hits hard
ОтветитьOverview
Listen
Artists
Lyrics
Said she tired of lil' money, need a big boy
Pull up twenty inch blades like I'm Lil' Troy
Now it's everybody flockin', need a decoy
Shawty mixin' up the vodka with the LaCroix, yeah
G-Wagon, G-Wagon, G-Wagon, G-Wagon
All the housewives pullin' up (up, up, up)
I got a lot of toys
720S bumpin' Fall Out Boy
You was talkin' shit in the beginning (mmh-mmh)
Back when I was feelin' more forgivin' (more forgivin')
I know it piss you off to see me winnin' (see me winnin')
See the igloo in my mouth when I be grinnin' (I be grinnin'), yeah
Hundred bands in my pocket, it's on me
Hundred deep when I roll like the army
Get more bottles, these bottles are lonely
It's a moment when I show up, got 'em sayin', "Wow" (wow, wow)
Hundred bands in my pocket, it's on me (on me)
Yeah, your grandmama probably know me (know me)
Get more bottles, these bottles are lonely
It's a moment when I show up, got 'em sayin', "Wow" (wow, wow)
Everywhere I go (hey)
Catch me on the block like I'm Mutombo (wow)
750 Lambo in the Utah snow (skrrt)
Trunk in the front like that shit Dumbo, yeah
Cut the roof off like a nip-tuck
Pull up to the house with some big butts
Turn the kitchen counter to a strip-club
Me and Dre came for the
When I got guap, all of y'all disappeared (wow)
Before I dropped Stoney, none of y'all really cared (cared)
Now they always say, "Congratulations, " to the kid (kid)
And this is not a 40, but I'm pourin' out this shit (yeah)
Used to have a lot, but I got more now (yup)
Made another hit 'cause I got bored now (yup)
Always goin' for it, never punt fourth down
Last call, Hail Mary, Prescott touchdown, ayy (yeah)
Hundred bands in my pocket, it's on me (on me)
Hundred deep when I roll like the army (hey)
Get more bottles, these bottles are lonely
It's a moment when I show up, got 'em sayin', "Wow" (wow, wow, wow)
Hundred bands in my pocket, it's on me (goddamn)
Yeah, your grandmama probably know me (goddamn)
Get more bottles, these bottles are lonely
It's a moment when I show up, got 'em sayin', "Wow" (wow, wow, wow, wow, wow)
Jaime set music
ОтветитьI love this song i made a dance whit it
ОтветитьOh my soul it’s been 5years????? Wow
ОтветитьWhat is 5 years
This was in the date
He f**** f**** and crazy
ОтветитьNormalmente.
Ответитьbest song ever
Ответить🎉
🎉🎉🎉🎉
อยู่ๆอีนี้ก็โผล่มามันเป็นใครแปลกๆอ่ะอย่างกับพวกกระหรี่หน้าเหมือนกันหมดมันทำให้ฉันกลัว
Ответить❤❤❤❤❤❤❤❤❤😂❤❤❤❤
ОтветитьMe
ОтветитьIn 4 years
ОтветитьJuly 23rd 2028 we play Mario Kart Wii
ОтветитьAlphablocks in Aug 30th angry Z
ОтветитьUm
ОтветитьPerry Hill
ОтветитьKemmer Run
Ответить109_')_+$4444444455,
❤❤❤❤❤❤❤❤❤❤❤❤❤😢🎉
Delphine Flat
ОтветитьMayert Glen
ОтветитьPfannerstill Stravenue
Ответить