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
ALTER PROCEDURE [dbo].[mostrarArchivos] (@Id_Usuario int, @Id_Carpeta int) | |
As | |
set nocount on | |
SELECT Id_Elemento = C.Id_Carpeta, | |
Elemento_Nombre = C.Carp_Nombre, | |
Tipo = 'Carpeta', | |
Modificado = '---' | |
FROM dbo.Usuario_Carpetas C | |
WHERE Id_Carpeta = @Id_Carpeta | |
AND Id_Usuario = @Id_Usuario |
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
<!-- Start Featured --> | |
<div id="featured"> | |
<?php | |
$arr = array(); | |
$i=1; | |
$featured_cat = get_option('thesource_feat_cat'); | |
$featured_num = (int) get_option('thesource_featured_num'); |
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
/*------------------------------------------------*/ | |
/*-----------------[RESET]------------------------*/ | |
/*------------------------------------------------*/ | |
/* http://meyerweb.com/eric/tools/css/reset/ */ | |
/* v1.0 | 20080212 */ | |
html, body, div, span, applet, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, abbr, acronym, address, big, cite, code, |
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
class Recorredor: | |
def __init__(self, lista): | |
self.__lista=lista | |
self.__actual=0 | |
def __comenzar(self): | |
self.__actual=0 | |
def elemento(self): |
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="es"> | |
<head> | |
<meta charset="utf-8"> | |
<title>textarea problem</title> | |
<link rel="stylesheet" type="text/css" href="main.css"> | |
<script src="post-box.js" language="javascript" type="text/javascript"></script> | |
</head> | |
<body> | |
<div class="post-coment-status"> |
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
$(function() { | |
tbody = $("tbody"); | |
$.ajax({ | |
dataType: "json", | |
type: "POST", | |
data: { action: "select" }, | |
url: "./php/events_table.php", | |
beforeSend: function() { tbody.html("<td colspan=\"4\" style=\"text-align: center; padding: 50px 0px;\">Loading events...</td>"); }, | |
success: function(data) { | |
getEventsTable(data); |
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
<? | |
function head(){?> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | |
<link href="css/style.css" rel="stylesheet" type="text/css"/> | |
<link href="css/main.css" rel="stylesheet" type="text/css"/> | |
<script type="text/javascript" src="Scripts/jquery-1.3.2.min.js"></script> | |
<!-- Tooltip --> |
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 | |
require_once 'config/db_config.php'; | |
$sql = "SELECT *, DATE_FORMAT(timestamp, '%Y-%c-%e') selector FROM events WHERE DATE_FORMAT(timestamp, '%Y-%c') = '".$_POST['d']."' ORDER BY timestamp, id ASC"; | |
$query = mysqli_query($link, $sql); | |
if (mysqli_num_rows($query) > 0){ | |
$data = array(); | |
while ($recset = mysqli_fetch_array($query)){ | |
if(!array_key_exists($recset["selector"], $data)){ |
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
-- | |
-- Estructura de tabla para la tabla `credito_datocrediticio` | |
-- | |
CREATE TABLE `credito_datocrediticio` ( | |
`secuencial` int(6) NOT NULL auto_increment, | |
`secuencialSolicitud` int(6) NOT NULL, | |
`descripcionActividadEconomica` varchar(200) NOT NULL, | |
`numeroMesesActividadEconomica` int(6) NOT NULL, | |
`numeroMesesVivienda` int(6) NOT NULL, |