Skip to content

Instantly share code, notes, and snippets.

View azrulharis's full-sized avatar

Mohd Azrul Bin Mohmad Haris azrulharis

  • TSG
  • Petaling Jaya
View GitHub Profile
@azrulharis
azrulharis / Crud.php
Created August 6, 2012 17:10
Php Crud Abstraction Layer using array
<?php
/**
* Crud class
*
* LICENSE FREE TO USE WITHOUT ANY WARRANTY
* How to use:
* Create class name extends Crud or change private method to public.
*
*/
@azrulharis
azrulharis / Validate.php
Created August 6, 2012 17:24
Php validation using array and display error on each form fields
<?php
class Validate {
public $message = array();
public $validate;
public function rules($data) {
foreach($data as $key => $value) {
@azrulharis
azrulharis / Session.php
Created August 6, 2012 17:49
Php session finger print
<?php
class ProtectPage {
public $check_browser = true;