Skip to content

Instantly share code, notes, and snippets.

View MasKoding's full-sized avatar

Dimas Priyandi MasKoding

View GitHub Profile

WEB Daftar Beasiswa

Struktur Hierarki Project

.
├── ./README.md
├── ./api
│   ├── ./api/checkDataBeasiswa.php
│   └── ./api/getMahasiswa.php
├── ./config
<?php
// deklarasi author dan versi
define('AUTHOR','Nama Kamu');
define('COPYRIGHT','&copy; 2023');
// memanggil file function.php menggunakan require_once
require_once 'function.php';
// deklarasi variabel untuk mengambil parameter pada page
<?php
/*
* merapihkan fungsi
* @author :
* @version : 1.0.0
* @copyright: 2023
*/
require_once 'config/connect.php';
<?php
// KONSTANTA untuk menentukan lokasi folder gambar atau resource
define('SRC_URL','../jwd_simulasi/src');
define('SRC_URL_UPLOAD','../src');
?>
{
// Place your global snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders.
// Placeholders with the same ids are connected.
// Example:
// "Print to console": {
// "scope": "javascript,typescript",
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Book-Store</title>
<link rel="stylesheet" href="main.css">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark bg-gradient">
<div class="container">
<a class="navbar-brand" href="#">BShop</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarContent" aria-controls="navbarContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse" id="navbarContent">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link active" aria-current="page" href="#">Home</a></li>
implementation 'com.google.android.material:material:1.6.1'
.gradle
**/build/
!src/**/build/
# Ignore Gradle GUI config
gradle-app.setting
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar