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 | |
class consulta_horarios_m extends CI_Model | |
{ | |
public function get_horarios() | |
{ | |
$this->update_horarios(); | |
$this->db->select('*'); |
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
<? | |
# Arquivo: thumb.php | |
# Autor: Helbert Fernandes - estaleiroweb | |
# baseado no trabalho de Mauricio Wolff | |
include "fileinc.php"; // Inclusão de funcões de Caminho e Diretório | |
// Constantes: variaveis que não mudam em todo o programa | |
define('MAX_WIDTH' , (isset($_REQUEST['w']))?$_REQUEST['w']:700); | |
define('MAX_HEIGHT', (isset($_REQUEST['h']))?$_REQUEST['h']:700); | |
define('CROP_WIDTH', (isset($_REQUEST['cropw']))?$_REQUEST['cropw']:MAX_WIDTH); |
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
<html> | |
<head> | |
<title></title> | |
</head> | |
<body> | |
<table width="676"> | |
<tr> | |
<td width="241"> | |
<div id="nome_cliente" class="editCampo"> | |
<b>Cliente:</b><br clear="all" /> |
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 | |
$data = "abc def "; | |
echo $strlen = strlen( $data ); | |
echo "<br/>"; | |
echo $c = $strlen/3; | |
echo "<br/>"; | |
echo $w = ceil( $c ); | |
echo "<br/>"; | |
echo $h = ceil( sqrt( $w /3 ) ); | |
echo "<br/>"; |
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
/** | |
* Popup javascript sem depender do jQuery | |
* | |
*/ | |
var popup = { | |
img:'', // new Array() | |
img_close:'popup/close2.png', | |
style:'', //new Array(), | |
config:function(){ |
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
/*! | |
* Name JavaScript Plugin/Library v0.0.0 | |
* http://public.ramon-barros.com/ | |
* | |
* Copyright 2012, Ramon Barros | |
* Licensed | |
* | |
* Includes .js | |
* http://.com/ | |
* Copyright 2011, |
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
/*! | |
* Ajax JavaScript Library v0.5.12 | |
* http://public.ramon-barros.com/ | |
* | |
* Copyright 2012, Ramon Barros | |
* Licensed | |
* | |
* Includes ajax.js | |
* http://.com/ | |
* Copyright 2012, |
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
/*! | |
* PopUp JavaScript Plugin v0.8.12 | |
* http://public.ramon-barros.com/ | |
* | |
* Copyright (c) 2012 Ramon Barros and other contributors, | |
* http://ramon-barros.com | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to | |
* deal in the Software without restriction, including without limitation the |
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
/* Exemplos classes prototype | |
* Este é o JavaScript Scratchpad. | |
* | |
* Forneça algum JavaScript, clique com o botão direito ou selecione o menu Execução: | |
* 1. Executar o texto selecionado, | |
* 2. Inspecionar: abra o resultado em uma janela “Inspecionar objeto” | |
* 3. Visualizar: insira o resultado em um comentário depois da selecão. | |
*/ | |
/*------------------------------------------------------------------------------ |
OlderNewer