Skip to content

Instantly share code, notes, and snippets.

View diguinhorocks's full-sized avatar
🤘

Rodrigo Santiago Motta diguinhorocks

🤘
  • Itararé - São Paulo
View GitHub Profile
@diguinhorocks
diguinhorocks / Client.php
Created March 8, 2012 17:53
MongoDB Active Record (Basic)
<?php
include_once('MongoActiveRecord.php');
class Client extends MongoActiveRecord{
private $_id;
private $nome;
private $email;
private $senha;
@diguinhorocks
diguinhorocks / form.html
Created February 17, 2012 17:54
Formulaŕio HTML com Borda
<!doctype html>
<html>
<head>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<form class="form arredondada" action="" method="POST">
<input type="text" name="teste" />
<input type="submit" value=" Salvar " />
</form>