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> | |
<title>Tanpa Syntactic Sugar</title> | |
</head> | |
<body> | |
<table> | |
<tr> | |
<th>No</th> | |
<th>Nama</th> |
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
// So, this is the part of file add.php which is this is located in application/views in CodeIgniter | |
<script src="<?php echo base_url('assets/js/jquery.min.js');?>" charset="utf-8"></script> | |
<!-- So, for make CSRF working more times, you should use cookie plugin --> | |
<script src="<?php echo base_url('assets/js/jquery.cookie.js'); ?>" charset="utf-8"></script> | |
<script src="<?php echo base_url('assets/js/bootstrap.min.js'); ?>" charset="utf-8"></script> | |
<script> | |
/* Ajax Dropdown Jurusan Prodi */ | |
function getProdi(value) { | |
console.log(value); | |
var row = value; |
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
// Piece of bunch config.php | |
$config['csrf_protection'] = TRUE; | |
$config['csrf_token_name'] = 'csrf_token'; | |
$config['csrf_cookie_name'] = 'csrf_cookie'; | |
$config['csrf_expire'] = 7200; | |
$config['csrf_regenerate'] = TRUE; | |
$config['csrf_exclude_uris'] = array(); |
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
<template> | |
<div> | |
<app-header></app-header> | |
</div> | |
</template> | |
<script> | |
import header from './components/header.vue'; | |
export default { |
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
<nav aria-label="Page navigation example"> | |
<ul class="pagination"> | |
<li class="page-item"><a class="page-link" href="#">Previous</a></li> | |
<li class="page-item"><a class="page-link" href="#">1</a></li> | |
<li class="page-item"><a class="page-link" href="#">2</a></li> | |
<li class="page-item"><a class="page-link" href="#">3</a></li> | |
<li class="page-item"><a class="page-link" href="#">Next</a></li> | |
</ul> | |
</nav> |
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
<my-page perpage="5" currentpage="3" next="Next >" previous="< Previous"></my-page> |
OlderNewer