This file contains hidden or 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
<section class="contenedorlat inicio"> | |
<aside class="columna latbanner"> | |
<div> | |
<script type="text/javascript"> | |
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','117','height','60','vspace','5','src','images/indoorkart','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','images/indoorkart' ); //end AC code | |
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="117" height="60" vspace="5"> | |
<param name="movie" value="images/indoorkart.swf"> | |
<param name="quality" value="high"> | |
<embed src="images/indoorkart.swf" width="117" height="60" vspace="5" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash"></embed> | |
</object></noscript> |
This file contains hidden or 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
<section class="contenedorlat inicio"> | |
<aside class="columna latbanner"> | |
<div> | |
<script type="text/javascript"> | |
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','117','height','60','vspace','5','src','images/indoorkart','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','images/indoorkart' ); //end AC code | |
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="117" height="60" vspace="5"> | |
<param name="movie" value="images/indoorkart.swf"> | |
<param name="quality" value="high"> | |
<embed src="images/indoorkart.swf" width="117" height="60" vspace="5" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash"></embed> | |
</object></noscript> |
This file contains hidden or 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
CREATE TABLE categorias | |
( | |
'id' INT(11) NOT NULL PRIMARY KEY AUTO_INCREMENT, | |
'parent_id' INT(11) NOT NULL REFERENCES categorias(id), | |
'nombre' VARCHAR(255) UNIQUE NOT NULL | |
); |
This file contains hidden or 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
CREATE TABLE categorias | |
( | |
'id' INT(11) NOT NULL PRIMARY KEY AUTO_INCREMENT, | |
'nombre' VARCHAR(255) UNIQUE NOT NULL | |
); | |
CREATE TABLE subcategorias | |
( | |
'id' INT(11) NOT NULL PRIMARY KEY AUTO_INCREMENT, | |
'categoria_id' INT(11) NOT NULL REFERENCES categoria(id), |
This file contains hidden or 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 | |
session_start(); | |
include('acceso_db.php'); | |
if(isset($_POST['enviar'])) { // comprobamos que se hayan enviado los datos del formulario | |
// comprobamos que los campos usuarios_nombre y usuario_clave no estén vacíos | |
if(empty($_POST['usuario_nombre']) || empty($_POST['usuario_clave'])) { | |
echo "El usuario o la contraseña no han sido ingresados. <a href='javascript:history.back();'>Reintentar</a>"; | |
}else { | |
// "limpiamos" los campos del formulario de posibles códigos maliciosos | |
$usuario_nombre = mysql_real_escape_string($_POST['usuario_nombre']); |
This file contains hidden or 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
<form class="form" action="<?=$_SERVER['PHP_SELF']?>" method="post" enctype="text/plain"> | |
<label for="name" accesskey="n" tabindex="1">Nombre</label> | |
<input type="text" id="name" name="name" value="" /> | |
<label for="email" accesskey="e" tabindex="2">E-Mail</label> | |
<input type="text" id="email" name="email" value=""/> | |
<label for="website" accesskey="w" tabindex="3">Sitio Web</label> | |
<input type="text" id="website" name="website" value=""/> | |
<label for="mensaje" accesskey="m" tabindex="4">Mensaje</label> | |
<textarea name="mensaje" id="mensaje" rows="10" cols="10"></textarea> | |
<div style="clear:both"></div> |
This file contains hidden or 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 XMLListImages{ | |
private $siteUrl = "http://www.yosoydeolavarria.com.ar/galclub/gran"; | |
private $extensions = array( | |
'JPEG', 'jpeg', | |
'JPG', 'jpg', | |
'PNG', 'png', | |
'BMP', 'bmp' | |
); | |
public function __construct($folderPath) |
This file contains hidden or 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
-- | |
-- Database: `images` | |
-- | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `imagenes` | |
-- | |
CREATE TABLE IF NOT EXISTS `positions` ( |
This file contains hidden or 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 XMLListImages{ | |
private $siteUrl = "http://www.yosoydeolavarria.com.ar/galery"; | |
private $extensions = array( | |
'JPEG', 'jpeg', | |
'JPG', 'jpg', | |
'PNG', 'png', | |
'BMP', 'bmp' | |
); | |
public function __construct($folderPath) |