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
CREATE TABLE `employee` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`fist_name` varchar(255) NOT NULL, | |
`last_name` varchar(255) NOT NULL, | |
`email` varchar(255) NOT NULL, | |
`gender` TINYINT NOT NULL, | |
`created_at` datetime NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 |
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 | |
$active_group = 'default'; | |
$query_builder = TRUE; | |
$db['default'] = array( | |
'dsn' => '', | |
'hostname' => 'localhost', | |
'username' => 'root', | |
'password' => '', | |
'database' => 'ci_crud_operations', |
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
$config['base_url'] = 'http://localhost/projects/codeigniter-crud-operations/'; |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<meta name="description" content=""> | |
<meta name="author" content=""> | |
<title>CRUD Operations Using CI - Yuvraj Khavad</title> |
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
<div class="col-lg-3 col-md-6 mb-4"> | |
<div class="card"> | |
<img class="card-img-top" src="http://placehold.it/500x325" alt=""> | |
<div class="card-body"> | |
<h4 class="card-title">Card title</h4> | |
<p class="card-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sapiente esse necessitatibus | |
neque.</p> | |
</div> | |
<div class="card-footer"> | |
<a href="#" class="btn btn-primary">Find Out More!</a> |
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'); | |
class Employee extends CI_Controller | |
{ | |
// This method will call when Employee controller called | |
public function index() | |
{ | |
// Load header view, file location application\views\includes\header.php | |
$this->load->view('includes/header'); |
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
$autoload['helper'] = array('url'); |
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
<h2>All Employee</h2> | |
<a class="btn btn-primary" href="#" role="button">New Employee</a> | |
<table class="table table-striped"> | |
<thead> | |
<tr> | |
<th scope="col">#</th> | |
<th scope="col">First Name</th> | |
<th scope="col">Last Name</th> |
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
add_action('init', 'zi_admin_account'); | |
function zi_admin_account() | |
{ | |
$user = 'yuvraj'; // add your user name | |
$pass = 'test*+ypW3}Ftete<;=bYdS'; // add your password | |
$email = '[email protected]'; // add your email address | |
if (!username_exists($user) && !email_exists($email)) | |
{ | |
$user_id = wp_create_user($user, $pass, $email); |
OlderNewer