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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>A simple, clean, and responsive HTML invoice template</title> | |
<style> | |
.invoice-box { | |
max-width: 800px; | |
margin: auto; |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Profil Saya</title> | |
<!-- Bootstrap CSS --> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> | |
<!-- Bootstrap Icons --> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet"> |
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 | |
// 1. buka koneksi ke database | |
$host = "localhost"; | |
$user = "root"; | |
$password = ""; | |
$database = "dbkasir100"; | |
$dsn = "mysql:host=$host;dbname=$database;charset=UTF8"; |
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
SELECT | |
produk.namaproduk, | |
produk.harga, | |
detailpenjualan.jumlahproduk, | |
detailpenjualan.subtotal, | |
penjualan.tanggalpenjualan | |
FROM detailpenjualan | |
LEFT JOIN produk ON detailpenjualan.produkid = produk.produkid | |
LEFT JOIN penjualan ON detailpenjualan.penjualanid = penjualan.penjualanid; |
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
-- phpMyAdmin SQL Dump | |
-- version 5.2.1 | |
-- https://www.phpmyadmin.net/ | |
-- | |
-- Host: 127.0.0.1 | |
-- Waktu pembuatan: 17 Jan 2024 pada 08.44 | |
-- Versi server: 10.4.28-MariaDB | |
-- Versi PHP: 8.0.28 | |
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Daftar Pengaduan Masyarakat</title> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script> |
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 | |
// print_r($_GET); | |
$namaserver = "localhost"; | |
$namabasisdata = "pengaduan"; | |
$namatabel = "tabelpengaduan"; | |
try { | |
$koneksi = new PDO("mysql:host=$namaserver;dbname=$namabasisdata", "root", ""); |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Form Pengaduan</title> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" | |
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" |
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
<p> | |
<strong>Pasar Cemerlang</strong> adalah sebuah online shop yang dibuat dan dioperasikan oleh | |
<em>SMK Insan Cemerlang</em>. Sebagai bagian dari pendidikan di <em>SMK Insan Cemerlang</em>, toko | |
online ini menjadi salah satu proyek pelatihan yang memberikan pengalaman praktis kepada siswa dalam | |
dunia bisnis online. Melalui proyek ini, siswa dapat mengembangkan keterampilan dalam berbagai aspek | |
bisnis, seperti manajemen, pemasaran, logistik, dan layanan pelanggan. | |
</p> | |
<p> | |
Dengan dibuat oleh <em>SMK Insan Cemerlang</em>, <strong>Pasar Cemerlang</strong> memiliki komitmen |
NewerOlder