Route::get('login', 'MyController@myMethod');
...
Input::get('activate');
Note: If the element is not a flexible item, the order property has no effect.
$(document).on('click', '.AddID', function(){
alert($(this).attr('id'));
});
DB::table('posts')
->where('user_id', '=', *user_id_here*)
->where('date', '>', *date_here*)
->count();
$dbh = new PDO("mysql:dbname={BEZ_DATABASE};host={BEZ_DBSERVER}", BEZ_DBUSER, BEZ_DBPASSWORD);
$dbh->exec("
SET NAMES utf8;
set character_set_client='utf8';
set character_set_results='utf8';
set collation_connection='utf8_general_ci'
");
$(selector).each(function(){
$(this).height($(this).parent().height() - 100);
});