8000 GitHub - amirul-iqbal/unisys: CodeIgniter wrapper class library for scraping Unisys data
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

amirul-iqbal/unisys

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Unisys

CodeIgniter wrapper class library for scraping Unisys data

Instruction

  1. Put all the files in libraries directory to application/libraries directory in your CodeIgniter project
  2. (Auto)load the 'unisys' library to get started

Sample code

$this->load->library('unisys');
$auth = $this->unisys->auth('08523999', 'passwordku');
if($auth !== false)
{
	// Data Mahasiswa
    echo '<pre>';
    var_dump($this->unisys->data());
    echo '</pre>';

    // Foto Mahasiswa
    $photo_path = $this->unisys->fetch_photo('foto.jpg');
    echo "<img src=\"$photo_path\">";
}

About

CodeIgniter wrapper class library for scraping Unisys data

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0