forked from qwerty/tupali
Inciando variables
This commit is contained in:
parent
a0a10510dc
commit
772a4834ef
@ -4,7 +4,7 @@ echo dibuja_clase();
|
||||
|
||||
function dibuja_clase(){
|
||||
|
||||
$link=Conectarse();
|
||||
$link=Conectarse();
|
||||
mysqli_query("SET NAMES 'utf8'");
|
||||
$consulta = "SELECT elemento FROM estilos GROUP BY elemento";
|
||||
$sql=mysqli_query($consulta,$link);
|
||||
@ -25,7 +25,7 @@ return;
|
||||
}
|
||||
|
||||
function dibuja_elemento($elemento){
|
||||
$link=Conectarse();
|
||||
$link=Conectarse();
|
||||
mysqli_query("SET NAMES 'utf8'");
|
||||
$consulta = "SELECT * FROM estilos WHERE elemento = '$elemento' ";
|
||||
$sql=mysqli_query($consulta,$link);
|
||||
@ -34,15 +34,20 @@ function dibuja_elemento($elemento){
|
||||
if($row[color] !=='') {$color = "$row[color]";}else{$color="";}
|
||||
$resultado .= "$row[label]:$row[valor] $color ;\n";
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
return $resultado;
|
||||
}
|
||||
|
||||
|
||||
function Conectarse(){
|
||||
$servidor = "";
|
||||
$usuario = "";
|
||||
$password = "";
|
||||
$db = "";
|
||||
|
||||
if ( !isset ( $link ) ) {
|
||||
|
||||
|
||||
@include("includes/datos.php");
|
||||
if(!isset($db)) {
|
||||
include("../milfs/includes/datos.php");
|
||||
|
Loading…
Reference in New Issue
Block a user