continuamos
ahora el db.php
db.php
Código PHP:
Ver original<?php
$hostname = "tuhost";
$database = "users";
$username = "tu user";
$password = "tupass";
?>
ok ahora el functions.php
Código PHP:
Ver original<?php
function checkLogin($levels)
{
if(!$_SESSION['logged_in'])
{
$access = FALSE;
}
else {
$kt = split(' ', $levels);
$access = FALSE;
{
if($val==$row['Level_access'])
{//if the user level matches one of the allowed levels
$access = TRUE;
}
}
}
if($access==FALSE)
{
header("Location: login.php"); }
else {
//do nothing: continue
}
}
function valid_email($str)
{
return ( ! preg_match("/^([a-z0-9\+_\-]+)(\.[a-z0-9\+_\-]+)*@([a-z0-9\-]+\.)+[a-z]{2,6}$/ix", $str)) ?
FALSE : TRUE; }
function checkUnique($field, $compared)
{
{
return TRUE;
}
else {
return FALSE;
}
}
function numeric($str)
{
return ( ! ereg("^[0-9\.]+$", $str)) ?
FALSE : TRUE; }
function alpha_numeric($str)
{
return ( ! preg_match("/^([-a-z0-9])+$/i", $str)) ?
FALSE : TRUE; }
function random_string($type = 'alnum', $len = 8)
{
switch($type)
{
case 'alnum' :
case 'numeric' :
case 'nozero' :
switch ($type)
{
case 'alnum' : $pool = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
break;
case 'numeric' : $pool = '0123456789';
break;
case 'nozero' : $pool = '123456789';
break;
}
$str = '';
for ($i=0; $i < $len; $i++)
{
}
return $str;
break;
break;
}
}
?>
y listo eso es todo
oruebalo y me avisas
atte
ingeniero: jose alexis trujillo
caracas-venezuela