Skip to content

Instantly share code, notes, and snippets.

View danilowm's full-sized avatar
🍻
Cheers

Danilo Iannone danilowm

🍻
Cheers
View GitHub Profile
@danilowm
danilowm / gist:1058595
Created July 1, 2011 14:00
Lista de Estados Brasileiros
<select name="txt_estado" id="txt_estado">
<option value="AC">Acre</option>
<option value="AL">Alagoas</option>
<option value="AP">Amapá</option>
<option value="AM">Amazonas</option>
<option value="BA">Bahia</option>
<option value="CE">Ceará</option>
<option value="DF">Distrito Federal</option>
<option value="GO">Goiás</option>
<option value="ES">Espírito Santo</option>
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
@danilowm
danilowm / gist:1555090
Created January 3, 2012 14:27
Animação CSS3/HTML5
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>Animação CSS3/HTML5</title>
<link rel="stylesheet" href="css/animate.css" type="text/css" media="screen" charset="utf-8">
<link rel="stylesheet" href="css/css.css" type="text/css" media="screen" charset="utf-8">
@danilowm
danilowm / gist:1555094
Created January 3, 2012 14:29
Animação CSS3/HTML5
<div id="box" class="animate bounceIn">
<p>Danilo Iannone blog.danilowm.com</p>
</div>
@danilowm
danilowm / gist:1555095
Created January 3, 2012 14:30
Animação CSS3/HTML5
#box {
text-align: center;
background: green;
padding: 40px;
width: 200px;
color: #fff;
margin: 0 auto;
border-radius: 5px;
font-weight: bold;
}
@danilowm
danilowm / gist:1719010
Created February 1, 2012 20:02
If de uma linha PHP
<?php
if( $sexo == "Masculino" ) {
echo "Você é homem";
}
else {
echo "Você é mulher";
}
?>
@danilowm
danilowm / gist:1719014
Created February 1, 2012 20:03
If de uma linha PHP
<?php
// Depois do Interrogação( ? ) vem o TRUE
// Depois do Dois Pontos ( : ) vem o FALSE
echo ( $sexo == "Masculino" ? "Você é homem" : "Você é mulher" );
?>
@danilowm
danilowm / gist:1719041
Created February 1, 2012 20:10
If de uma linha PHP
<?php
// Se existir $_GET['nome'] retorna o valor, senão, retorna vazio
$nome = isset($_GET['nome']) ? $_GET['nome'] : '';
$email = isset($_GET['email']) ? $_GET['email'] : '';
$mensagem = isset($_GET['mensagem']) ? $_GET['mensagem'] : '';
echo $nome.'<br/>'.$email.'<br/>'.$mensagem;
?>
@danilowm
danilowm / gist:1808154
Created February 12, 2012 11:50
Header Charset no PHP
<?php header ('Content-type: text/html; charset=UTF-8'); ?>
@danilowm
danilowm / gist:1808158
Created February 12, 2012 11:51
Header Charset no PHP
<?php header ('Content-type: text/html; charset=ISO-8859-1'); ?>