View gist:5226705
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*Core de funcionamento do Software VoteScript | |
Grupo de estudos: cssshark.wordpress.com | |
Autor:Valdiney França | |
Data:02/01/2013 | |
*/ | |
window.onload = function(){ | |
$(document).ready(function(){ | |
var audioElement = document.createElement('audio'); |
View gist:5227958
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
------------------------------- | |
Nome: FontesizeYes... | |
Descrição: Código aumenta e diminui textos associados ao Script | |
Autor: Valdinei França | |
Email: Valdiney.2@hotmail.com | |
Site: valdiney.org | |
Data: 10/11/2012 | |
------------------------------- | |
Documentação de funcionamento |
View gist:5230222
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/*Upload de imagens para o servidor | |
Grupo de estudos: cssshark.wordpress.com | |
Autor:Valdiney França | |
Data:02/01/2013 | |
*/ | |
?> | |
<!doctype html> | |
<html> |
View gist:5230674
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/*Faz pesquisa em uma tabela e mostra o resultado da mesma | |
Grupo de estudos: cssshark.wordpress.com | |
Autor:Valdiney França | |
Data:02/01/2013 | |
*/ | |
?> | |
<!doctype html> | |
<html> |
View gist:5233201
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Projeto: Página com senha e usuario | |
Author:Valdinei França | |
Email:Valdiney.2@hotmail.com | |
*/ | |
$link = mysql_connect("localhost",'root',''); | |
$banco = mysql_select_db("db_school"); | |
/*--CONEXAO COM O BANCO DE DADOS--*/ |
View gist:5244823
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<!-- | |
Autor: Valdiney França | |
Site: valdiney.org | |
--> | |
<html> | |
<head> | |
<script src="js/jquery-1.6.4.min.js"></script> | |
<link rel="stylesheet" href="css/style_areadetrabalho.css"/> | |
<title>BD SCHOOL</title> |
View gist:5279283
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Autor> Valdiney | |
Linguagem: JavaScript | |
Descobre se um número é primo ou não! | |
O número primo tem como divisor o número 1 e ele mesmo, sendo assim o número de divisores é o 2. | |
----------------------------------------------------------------- | |
Para este exemplo funcionar da maneira em que se encontra, crie uma página html e seus respectivos campo, tanto de entrada | |
de dados quando o de saida. sendo eles numero_primo, campo_resultado, ou modifique o script abdicando estes campos | |
*/ | |
window.onload = function(){ |
View gist:5283772
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
/* | |
Class através de função construtora calcula o "Teorema de Pitagoras", | |
sendo que também contem uma função incluida para calcular a "area". | |
----------------------------------------------------------------------- | |
Autor: Valdiney França | |
Linguagem: javascript | |
*/ | |
function Teorema_pitagoras(H,b){ |
View gist:5395121
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Menu com php oop</title> | |
<script language="javascript" src="js/jquery-1.6.4.min.js"></script> | |
<script language="javascript" src="js/menu.js"></script> | |
<link rel="stylesheet" href="css/style.css"></style> | |
<?php |
View gist:5413938
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!Doctype html> | |
<html lang="pt"> | |
<head> | |
<meta charset="utf-8"/> | |
<meta name="viewport" content="width=device-width,initial-scale=1.0"/> | |
<script src="js/jquery-1.6.4.min.js"></script> | |
<script src="js/zoom_imagens.js"></script> | |
<link rel="stylesheet" href="css/style.css"></style> | |
<title>Paginação com php</title> | |
</head> |
OlderNewer