Marcus Neto (@marcusneto) ~ Selling ExpressionEngine
- Slides: ?
.hide-text { | |
text-indent: 100%; | |
white-space: nowrap; | |
overflow: hidden; | |
} |
/* For modern browsers */ | |
.cf:before, | |
.cf:after { | |
content:""; | |
display:table; | |
} | |
.cf:after { | |
clear:both; | |
} |
<script type="text/javascript"> | |
_gaq.push(['_trackPageview', '/zoeken/?zoekwaarde={exp:low_search:keywords query="{segment_2}" format="url"}']); | |
</script> |
<?php | |
$data = array(); | |
$query = $this->EE->db->select('member_id') | |
->from('db_table') | |
->where('entry_id', $entry_id) | |
->where_in('dummy_column', array_keys($another_data)) | |
->get(); | |
foreach( $query->result() as $row ) |
/* Within container */ | |
.Absolute-Center { | |
width: 50%; | |
height: 50%; | |
overflow: auto; | |
margin: auto; | |
position: absolute; | |
top: 0; left: 0; bottom: 0; right: 0; | |
} |
curl -sS https://getcomposer.org/installer | php |
<?php | |
use Illuminate\Auth\UserInterface; | |
use Illuminate\Auth\Reminders\RemindableInterface; | |
use \Eloquent; | |
class User extends Eloquent implements UserInterface, RemindableInterface | |
{ |
<!doctype html> | |
<html class="no-js" lang=""> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
</head> | |
<body> | |
<!-- Add your site or application content here --> |
# BEGIN GZIP | |
<IfModule mod_deflate.c> | |
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript text/javascript | |
</IfModule> | |
# END GZIP | |
# BEGIN Expires | |
<IfModule mod_expires.c> | |
ExpiresActive On | |
ExpiresDefault "access plus 1 seconds" |