Hola
Soy muy nuevo en ésto y necesito su ayuda: De antemano MIL GRACIAS !!!!
Intento usar variables de sesion yme generar estos errores...:
Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource in /home/consul/public_html/testu.php on line 32
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/consul/public_html/testu.php on line 34
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/consul/public_html/testu.php on line 36
El codigo es éste......
<?php
session_start();
require_once('Connections/indicadores.php');
function Alerta ($n)
{ echo "\n<script> alert('".$n."') </script>"; }
function RetornarOL ($link)
{ echo "<script> window.location.href='".$link."' </script>";}
function conectar()
{
$h = "localhost";
$u = "admin";
$pw = "123AbC";
$db = "indicadoresU";
$link = mysql_connect($h,$u,$pw);
mysql_select_db($db,$link);
}
$dependencia = $_POST['dependencia'];
$clave = $_POST['clave'];
$ssql = mysql_db_query($db,"SELECT * FROM dependencias WHERE where nom_dep='$dependencia' and clave_dep='$clave' ");
$rs = mysql_query($ssql,$link);
$dt = mysql_fetch_array($ssql);
if (mysql_num_rows($ssql) == 0){
Alerta("ERROR: Usuario o Clave errados, por favor intente nuevamente");
$link= "indexu.php";
}
else {
$_SESSION["CODIGO"]= $dt["cod_dep"];
$_SESSION["NOMBRE"]= $dt["nom_dep"];;
$_SESSION["DESCRIPCION"]= $dt["desc_dep"];
$_SESSION["CLAVE"]= $dt["clave_dep"];
$_SESSION["autentificado"]="si";
header("Location:Editar2.php");
Alerta ("Sr(a). $S_NOM_DEPENDENCIA ha ingresado a INDICADORES INSTITUCIONALES exitosamente ");
$link= "ensayo.php";
}
echo $dt["clave_dep"];
?>