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
#Requirements | |
- sudo apt-get install network-manager libnss3-tools jq xsel | |
- sudo apt install php-cli php-curl php-mbstring php-xml php-zip | |
- sudo apt install php-sqlite3 php-mysql php-pgsql | |
- sudo apt install composer | |
- sudo apt install curl | |
#Install mysql | |
- sudo apt install mysql-server |
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 defined('BASEPATH') OR exit('No direct script access allowed'); | |
class Registrasi extends CI_Controller { | |
public function __construct() | |
{ | |
parent::__construct(); | |
$this->load->model('Model_data', 'Data'); | |
} |
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
{ | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.colorTheme": "One Dark Pro", | |
"editor.fontSize": 17, | |
"editor.fontFamily": "'Dank Mono','JetBrains Mono','Operator Mono Book','IBM Plex Mono', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'", | |
"editor.fontLigatures": true, | |
"editor.minimap.enabled": false, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"material-icon-theme.folders.color": "#42a5f5", | |
"material-icon-theme.opacity": 1, |
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>Js Starting</title> | |
<style> | |
* { | |
padding: 0; | |
margin: 0; |
NewerOlder