This file contains 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
.editor-group-watermark > .letterpress{ | |
background-image: url("https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/main/VSCode/VSCode-Thick.png") !important; | |
opacity: .85; | |
aspect-ratio: 4/2 !important; | |
} | |
.monaco-workbench .part.editor.has-watermark>.content.empty .editor-group-container>.editor-group-letterpress, | |
.monaco-workbench .part.editor>.content.empty>.watermark>.watermark-box | |
{ | |
background-image: url("https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/main/VSCode/VSCode-Thick.png") !important; |
This file contains 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 | |
$connection = mysqli_connect("localhost", "root", "", "tb_apalah"); | |
//Ambil Status | |
$user = "1"; |
This file contains 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
Action : addDir | |
Path : /data/data/jp.co.craftegg.band/ | |
At : 2020-10-08T05:18:07.424Z | |
Action : addDir | |
Path : /data/data/jp.co.craftegg.band/app_.gpg.classloader | |
At : 2020-10-08T05:18:07.457Z | |
Action : addDir | |
Path : /data/data/jp.co.craftegg.band/app_SmartBeat |
This file contains 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 | |
class AutoNumber{ | |
protected $prefix; | |
protected $lastIndex; | |
protected $indexNext; | |
public function __construct($data){ | |
$this->prefix = $data[0]; | |
$this->lastIndex = $data[1]; |
This file contains 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 | |
defined('BASEPATH') OR exit('No direct script access allowed'); | |
require APPPATH . '/libraries/REST_Controller.php'; | |
use Restserver\Libraries\REST_Controller; | |
class Lapangan extends REST_Controller{ | |
public function __construct(){ | |
parent::__construct(); |
This file contains 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 | |
defined('BASEPATH') OR exit('No direct script access allowed'); | |
require APPPATH . '/libraries/REST_Controller.php'; | |
use Restserver\Libraries\REST_Controller; | |
class Lapangan extends REST_Controller{ | |
public function __construct(){ | |
parent::__construct(); |
This file contains 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 | |
//import apalah disini | |
class X extends REST_Controller{ | |
public function index_get(){ | |
//Get lapangan | |
$lapangan = $this->m_futsal->lapangan()->result(); | |
$tersedia = $this->m_futsal->tersedia(); | |
This file contains 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 | |
$host = mysqli_connect("localhost", "root", "", "ball"); | |
$query = mysqli_query($host, "SELECT * FROM tb_booking"); | |
$queryLapangan = mysqli_query($host, "SELECT * from tb_lapangan"); | |
//Ambil data pokoknya dah :v |