Skip to content

Instantly share code, notes, and snippets.

@iammerrick
Created January 24, 2011 02:00
Show Gist options
  • Save iammerrick/792681 to your computer and use it in GitHub Desktop.
Save iammerrick/792681 to your computer and use it in GitHub Desktop.
<?php
$user = ORM::factory('user');
$user->email = Arr::get($_POST, 'email');
$user->username = Arr::get($_POST, 'email');
$user->password = '123456';
$user->save();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment