Foros del Web » Programando para Internet » PHP »

enviar correo tras una variable

Estas en el tema de enviar correo tras una variable en el foro de PHP en Foros del Web. Hola hace tiempo hice un pregunta en el foro y solo uno me respondio, solo que no me ayudo, creo que fue que formule mal ...
  #1 (permalink)  
Antiguo 17/10/2011, 17:11
 
Fecha de Ingreso: abril-2011
Mensajes: 15
Antigüedad: 13 años
Puntos: 0
Pregunta enviar correo tras una variable

Hola hace tiempo hice un pregunta en el foro y solo uno me respondio, solo que no me ayudo, creo que fue que formule mal la pregunta! pues bien aqui la formulo de una manera diferente, a ver si me pueden ayudar, tengo un formulario que he llamado desde otra pagina, este me trae todos los datos por medio de la ID, en este formulario hago un cambio de estatus ( estoy haciendo un update de la base de datos ), pues bien, en los datos que llame hay una direccion de correo electronico, lo que quiero es que cuando hago el update de los datos, usando esa direccion email que fue llamada por una variable, se envie un correo a la misma cuando le de al boton de actualizar. espero me puedan ayudar!

aqui dejo el codigo php ( estoy nuevo en php, a lo mejor el codigo se ve muy profesional, pero es que estoy usando las herramientas del dreamweaver, no lo estoy escribiendo yo)

Código PHP:
<?php require_once('../Connections/telefams.php'); ?>
<?php
if (!isset($_SESSION)) {
  
session_start();
}
$MM_authorizedUsers "admin,dataentry";
$MM_donotCheckaccess "false";

// *** Restrict Access To Page: Grant or deny access to this page
function isAuthorized($strUsers$strGroups$UserName$UserGroup) { 
  
// For security, start by assuming the visitor is NOT authorized. 
  
$isValid False

  
// When a visitor has logged into this site, the Session variable MM_Username set equal to their username. 
  // Therefore, we know that a user is NOT logged in if that Session variable is blank. 
  
if (!empty($UserName)) { 
    
// Besides being logged in, you may restrict access to only certain users based on an ID established when they login. 
    // Parse the strings into arrays. 
    
$arrUsers Explode(","$strUsers); 
    
$arrGroups Explode(","$strGroups); 
    if (
in_array($UserName$arrUsers)) { 
      
$isValid true
    } 
    
// Or, you may restrict access to only certain users based on their username. 
    
if (in_array($UserGroup$arrGroups)) { 
      
$isValid true
    } 
    if ((
$strUsers == "") && false) { 
      
$isValid true
    } 
  } 
  return 
$isValid
}

$MM_restrictGoTo "login.php";
if (!((isset(
$_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers$_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {   
  
$MM_qsChar "?";
  
$MM_referrer $_SERVER['PHP_SELF'];
  if (
strpos($MM_restrictGoTo"?")) $MM_qsChar "&";
  if (isset(
$_SERVER['QUERY_STRING']) && strlen($_SERVER['QUERY_STRING']) > 0
  
$MM_referrer .= "?" $_SERVER['QUERY_STRING'];
  
$MM_restrictGoTo $MM_restrictGoTo$MM_qsChar "accesscheck=" urlencode($MM_referrer);
  
header("Location: "$MM_restrictGoTo); 
  exit;
}
?>
<?php
if (!function_exists("GetSQLValueString")) {
function 
GetSQLValueString($theValue$theType$theDefinedValue ""$theNotDefinedValue ""
{
  if (
PHP_VERSION 6) {
    
$theValue get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  }

  
$theValue function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

  switch (
$theType) {
    case 
"text":
      
$theValue = ($theValue != "") ? "'" $theValue "'" "NULL";
      break;    
    case 
"long":
    case 
"int":
      
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case 
"double":
      
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case 
"date":
      
$theValue = ($theValue != "") ? "'" $theValue "'" "NULL";
      break;
    case 
"defined":
      
$theValue = ($theValue != "") ? $theDefinedValue $theNotDefinedValue;
      break;
  }
  return 
$theValue;
}
}

$editFormAction $_SERVER['PHP_SELF'];
if (isset(
$_SERVER['QUERY_STRING'])) {
  
$editFormAction .= "?" htmlentities($_SERVER['QUERY_STRING']);
}

if ((isset(
$_POST["MM_update"])) && ($_POST["MM_update"] == "form")) {
  
$updateSQL sprintf("UPDATE reparaciones SET fechaRE=%s, trabajo_realizado=%s, reparado_por=%s, monto_reparacion=%s, estatus=%s WHERE ordenID=%s",
                       
GetSQLValueString($_POST['fechaRE'], "text"),
                       
GetSQLValueString($_POST['trabajo_realizado'], "text"),
                       
GetSQLValueString($_POST['reparado_por'], "text"),
                       
GetSQLValueString($_POST['monto_reparacion'], "text"),
                       
GetSQLValueString($_POST['estatus'], "text"),
                       
GetSQLValueString($_POST['ordenID'], "int"));

  
mysql_select_db($database_telefams$telefams);
  
$Result1 mysql_query($updateSQL$telefams) or die(mysql_error());


  
$updateGoTo "indexl.php";
  if (isset(
$_SERVER['QUERY_STRING'])) {
    
$updateGoTo .= (strpos($updateGoTo'?')) ? "&" "?";
    
$updateGoTo .= $_SERVER['QUERY_STRING'];
  }
  
header(sprintf("Location: %s"$updateGoTo));
}

$colname_rsUsuarios "-1";
if (isset(
$_SESSION['MM_Username'])) {
  
$colname_rsUsuarios $_SESSION['MM_Username'];
}
mysql_select_db($database_telefams$telefams);
$query_rsUsuarios sprintf("SELECT * FROM usuarios WHERE usuario = %s"GetSQLValueString($colname_rsUsuarios"text"));
$rsUsuarios mysql_query($query_rsUsuarios$telefams) or die(mysql_error());
$row_rsUsuarios mysql_fetch_assoc($rsUsuarios);
$totalRows_rsUsuarios mysql_num_rows($rsUsuarios);

$colname_rsReparaciones "-1";
if (isset(
$_GET['ordenID'])) {
  
$colname_rsReparaciones $_GET['ordenID'];
}
mysql_select_db($database_telefams$telefams);
$query_rsReparaciones sprintf("SELECT * FROM reparaciones WHERE ordenID = %s"GetSQLValueString($colname_rsReparaciones"int"));
$rsReparaciones mysql_query($query_rsReparaciones$telefams) or die(mysql_error());
$row_rsReparaciones mysql_fetch_assoc($rsReparaciones);
$totalRows_rsReparaciones mysql_num_rows($rsReparaciones);
?>
Gracias!
  #2 (permalink)  
Antiguo 17/10/2011, 23:22
Avatar de Miztli  
Fecha de Ingreso: abril-2007
Mensajes: 39
Antigüedad: 17 años
Puntos: 1
Respuesta: enviar correo tras una variable

Hola!
Pues tomando parte de tu código:

Código:
if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "form")) {
  $updateSQL = sprintf("UPDATE reparaciones SET fechaRE=%s, trabajo_realizado=%s, reparado_por=%s, monto_reparacion=%s, estatus=%s WHERE ordenID=%s",
                       GetSQLValueString($_POST['fechaRE'], "text"),
                       GetSQLValueString($_POST['trabajo_realizado'], "text"),
                       GetSQLValueString($_POST['reparado_por'], "text"),
                       GetSQLValueString($_POST['monto_reparacion'], "text"),
                       GetSQLValueString($_POST['estatus'], "text"),
                       GetSQLValueString($_POST['ordenID'], "int"));

  mysql_select_db($database_telefams, $telefams);
  $Result1 = mysql_query($updateSQL, $telefams) or die(mysql_error());


mail($_POST['ordenID'],'título del correo','Mensaje del correo');


  $updateGoTo = "indexl.php";
  if (isset($_SERVER['QUERY_STRING'])) {
    $updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";
    $updateGoTo .= $_SERVER['QUERY_STRING'];
  }
  header(sprintf("Location: %s", $updateGoTo));
}
Saludos!
  #3 (permalink)  
Antiguo 18/10/2011, 09:28
 
Fecha de Ingreso: abril-2011
Mensajes: 15
Antigüedad: 13 años
Puntos: 0
Respuesta: enviar correo tras una variable

Pruebo y te digo!
  #4 (permalink)  
Antiguo 18/10/2011, 18:38
 
Fecha de Ingreso: abril-2011
Mensajes: 15
Antigüedad: 13 años
Puntos: 0
Respuesta: enviar correo tras una variable

Cita:
Iniciado por Miztli Ver Mensaje
Hola!
Pues tomando parte de tu código:

Código:
if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "form")) {
  $updateSQL = sprintf("UPDATE reparaciones SET fechaRE=%s, trabajo_realizado=%s, reparado_por=%s, monto_reparacion=%s, estatus=%s WHERE ordenID=%s",
                       GetSQLValueString($_POST['fechaRE'], "text"),
                       GetSQLValueString($_POST['trabajo_realizado'], "text"),
                       GetSQLValueString($_POST['reparado_por'], "text"),
                       GetSQLValueString($_POST['monto_reparacion'], "text"),
                       GetSQLValueString($_POST['estatus'], "text"),
                       GetSQLValueString($_POST['ordenID'], "int"));

  mysql_select_db($database_telefams, $telefams);
  $Result1 = mysql_query($updateSQL, $telefams) or die(mysql_error());


mail($_POST['ordenID'],'título del correo','Mensaje del correo');


  $updateGoTo = "indexl.php";
  if (isset($_SERVER['QUERY_STRING'])) {
    $updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";
    $updateGoTo .= $_SERVER['QUERY_STRING'];
  }
  header(sprintf("Location: %s", $updateGoTo));
}
Saludos!
Hola Miztli no se que estoy haciendo mal, aqui te envio todo el contenido del panel para ver que estoy haciendo mal!
  #5 (permalink)  
Antiguo 18/10/2011, 18:41
 
Fecha de Ingreso: abril-2011
Mensajes: 15
Antigüedad: 13 años
Puntos: 0
Respuesta: enviar correo tras una variable

pfff se me olvidaba el codigo:

aqui el PHP:
Código PHP:
Ver original
  1. <?php require_once('../Connections/telefams.php'); ?>
  2. <?php
  3. if (!isset($_SESSION)) {
  4. }
  5. $MM_authorizedUsers = "admin,dataentry";
  6. $MM_donotCheckaccess = "false";
  7.  
  8. // *** Restrict Access To Page: Grant or deny access to this page
  9. function isAuthorized($strUsers, $strGroups, $UserName, $UserGroup) {
  10.   // For security, start by assuming the visitor is NOT authorized.
  11.   $isValid = False;
  12.  
  13.   // When a visitor has logged into this site, the Session variable MM_Username set equal to their username.
  14.   // Therefore, we know that a user is NOT logged in if that Session variable is blank.
  15.   if (!empty($UserName)) {
  16.     // Besides being logged in, you may restrict access to only certain users based on an ID established when they login.
  17.     // Parse the strings into arrays.
  18.     $arrUsers = Explode(",", $strUsers);
  19.     $arrGroups = Explode(",", $strGroups);
  20.     if (in_array($UserName, $arrUsers)) {
  21.       $isValid = true;
  22.     }
  23.     // Or, you may restrict access to only certain users based on their username.
  24.     if (in_array($UserGroup, $arrGroups)) {
  25.       $isValid = true;
  26.     }
  27.     if (($strUsers == "") && false) {
  28.       $isValid = true;
  29.     }
  30.   }
  31.   return $isValid;
  32. }
  33.  
  34. $MM_restrictGoTo = "login.php";
  35. if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {  
  36.   $MM_qsChar = "?";
  37.   $MM_referrer = $_SERVER['PHP_SELF'];
  38.   if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";
  39.   if (isset($_SERVER['QUERY_STRING']) && strlen($_SERVER['QUERY_STRING']) > 0)
  40.   $MM_referrer .= "?" . $_SERVER['QUERY_STRING'];
  41.   $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);
  42.   header("Location: ". $MM_restrictGoTo);
  43.   exit;
  44. }
  45. ?>
  46. <?php
  47. if (!function_exists("GetSQLValueString")) {
  48. function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
  49. {
  50.   if (PHP_VERSION < 6) {
  51.     $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  52.   }
  53.  
  54.   $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
  55.  
  56.   switch ($theType) {
  57.     case "text":
  58.       $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
  59.       break;    
  60.     case "long":
  61.     case "int":
  62.       $theValue = ($theValue != "") ? intval($theValue) : "NULL";
  63.       break;
  64.     case "double":
  65.       $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
  66.       break;
  67.     case "date":
  68.       $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
  69.       break;
  70.     case "defined":
  71.       $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
  72.       break;
  73.   }
  74.   return $theValue;
  75. }
  76. }
  77.  
  78. $editFormAction = $_SERVER['PHP_SELF'];
  79. if (isset($_SERVER['QUERY_STRING'])) {
  80.   $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
  81. }
  82.  
  83. if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "form")) {
  84.   $updateSQL = sprintf("UPDATE reparaciones SET fechaRE=%s, trabajo_realizado=%s, reparado_por=%s, monto_reparacion=%s, estatus=%s WHERE ordenID=%s",
  85.                        GetSQLValueString($_POST['fechaRE'], "text"),
  86.                        GetSQLValueString($_POST['trabajo_realizado'], "text"),
  87.                        GetSQLValueString($_POST['reparado_por'], "text"),
  88.                        GetSQLValueString($_POST['monto_reparacion'], "text"),
  89.                        GetSQLValueString($_POST['estatus'], "text"),
  90.                        GetSQLValueString($_POST['ordenID'], "int"));
  91.  
  92.   mysql_select_db($database_telefams, $telefams);
  93.   $Result1 = mysql_query($updateSQL, $telefams) or die(mysql_error());
  94.  
  95.   $updateGoTo = "indexl.php";
  96.   if (isset($_SERVER['QUERY_STRING'])) {
  97.     $updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";
  98.     $updateGoTo .= $_SERVER['QUERY_STRING'];
  99.   }
  100.   header(sprintf("Location: %s", $updateGoTo));
  101. }
  102.  
  103. $colname_rsUsuarios = "-1";
  104. if (isset($_SESSION['MM_Username'])) {
  105.   $colname_rsUsuarios = $_SESSION['MM_Username'];
  106. }
  107. mysql_select_db($database_telefams, $telefams);
  108. $query_rsUsuarios = sprintf("SELECT * FROM usuarios WHERE usuario = %s", GetSQLValueString($colname_rsUsuarios, "text"));
  109. $rsUsuarios = mysql_query($query_rsUsuarios, $telefams) or die(mysql_error());
  110. $row_rsUsuarios = mysql_fetch_assoc($rsUsuarios);
  111. $totalRows_rsUsuarios = mysql_num_rows($rsUsuarios);
  112.  
  113. $colname_rsReparaciones = "-1";
  114. if (isset($_GET['ordenID'])) {
  115.   $colname_rsReparaciones = $_GET['ordenID'];
  116. }
  117. mysql_select_db($database_telefams, $telefams);
  118. $query_rsReparaciones = sprintf("SELECT * FROM reparaciones WHERE ordenID = %s", GetSQLValueString($colname_rsReparaciones, "int"));
  119. $rsReparaciones = mysql_query($query_rsReparaciones, $telefams) or die(mysql_error());
  120. $row_rsReparaciones = mysql_fetch_assoc($rsReparaciones);
  121. $totalRows_rsReparaciones = mysql_num_rows($rsReparaciones);
  122. ?>
  #6 (permalink)  
Antiguo 18/10/2011, 18:42
 
Fecha de Ingreso: abril-2011
Mensajes: 15
Antigüedad: 13 años
Puntos: 0
Respuesta: enviar correo tras una variable

aqui esta el cuerpo de la pagina:

HTML:
Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Panel de Control</title>
  5.     <link href="reset.css" rel="stylesheet" type="text/css" />
  6.     <link href="style.css" rel="stylesheet" type="text/css" />
  7.     <link href="js/jquery.wysiwyg.css" rel="stylesheet" type="text/css" />
  8.     <link type="text/css" media="screen" rel="stylesheet" href="js/colorbox.css" />
  9.     <link type="text/css" media="screen" rel="stylesheet" href="js/colorbox-custom.css" />
  10.    
  11.         <style type="text/css">
  12.         div.wysiwyg ul.panel li {padding:0px !important;} /**textarea visual editor padding override**/
  13.         </style>
  14.         <!--[if IE 6]>
  15.        <link rel="stylesheet" href="ie.css" type="text/css" />
  16.        <![endif]-->
  17.         <!--[if IE]>
  18.                    <link type="text/css" media="screen" rel="stylesheet" href="js/colorbox-custom-ie.css" title="Cleanity" />
  19.        <![endif]-->
  20.    
  21. <script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
  22. <script type="text/javascript" src="js/jquery.colorbox-min.js"></script>
  23. <script type="text/javascript" src="js/jquery.ui.js"></script>
  24. <script type="text/javascript" src="js/jquery.corners.min.js"></script>
  25. <script type="text/javascript" src="js/bg.pos.js"></script>
  26. <script type="text/javascript" src="js/jquery.wysiwyg.js"></script>
  27.    
  28. <script src="js/tabs.pack.js" type="text/javascript"></script>
  29. <script type="text/javascript" src="js/cleanity.js"></script>
  30.  
  31. </head>
  32.  
  33. <div id="container">
  34.     <div class="hidden"><!-- the modal box container - this div is hidden until it is called from a modal box trigger. see cleanity.js for details -->
  35.     <div id="sample-modal"><h2 style="font-size:160%; font-weight:bold; margin:10px 0;">Modal Box Content</h2><p>Place your desired modal box content here</p></div>
  36.     </div><!-- end of hidden -->
  37.     <div id="header">
  38.       <div id="top">
  39.       <h1><a href="#">Telecomunicaciones Fams</a></h1>
  40.       <p id="userbox">Hola <strong><?php echo $row_rsUsuarios['nombre']; ?> </strong>|<a href="logout.php"> Salir</a> <br />
  41.       <small><?php include('fecha.php') ?> - <?php include('hora.php') ?></small></p>
  42.       <span class="clearFix"></span>
  43.       </div>
  44.       <ul id="menu">
  45.         <li><a href="indexl.php">PRINCIPAL</a></li>
  46.         <li class="selected"><a href="ordenes.php">ORDENES DE REPARACION</a></li>
  47.       </ul>
  48.       <span class="clearFix"></span>
  49.     </div><!-- end of #header -->
  50.  
  51. <div id="content">
  52.     <div id="content-top">
  53.     <h2>Panel de Administracion</h2>
  54.       <a href="indexl.php" id="topLink">Volver</a>
  55.       <span class="clearFix"></span>
  56.     </div><!-- end of div#content-top -->
  57.       <div id="left-col">
  58.           <div class="box">
  59.               <h4 class="yellow">Menu</h4><!--end of div.box-container --></div><!-- end of div.box --><!--end of div.box --><!-- end of div.box -->
  60.       </div> <!-- end of div#left-col -->
  61.      
  62.       <div id="mid-col">
  63.      
  64.         <div class="box">      
  65.             <h4 class="white">Cambio de Status</h4>
  66.         <div class="box-container">
  67.         <form name="form" action="<?php echo $editFormAction; ?>" method="POST">
  68.           <p>Nº de Orden: <input name="ordenID" type="text" id="ordenID" value="<?php echo $row_rsReparaciones['ordenID']; ?>" readonly="readonly" /></p>
  69.           <p>Fecha de Entrada: <?php echo $row_rsReparaciones['fechaEN']; ?></p>
  70.           <p>Fecha de Reparación: <input name="fechaRE" type="text" id="fechaRE" /></p>
  71.           <p>Nombre: <?php echo $row_rsReparaciones['Nombre']; ?></p>
  72.           <p>Marca: <?php echo $row_rsReparaciones['marca']; ?></p>
  73.           <p>Modelo: <?php echo $row_rsReparaciones['modelo']; ?></p>
  74.           <p>Serial: <?php echo $row_rsReparaciones['serial']; ?></p>
  75.           <p>Fallas: <?php echo $row_rsReparaciones['fallas']; ?></p>
  76.           <p>Estado Físico: <?php echo $row_rsReparaciones['estado_fisico']; ?></p>
  77.           <p>Accesorios: <?php echo $row_rsReparaciones['accesorios']; ?></p>
  78.           <p>Nº de Celular: <?php echo $row_rsReparaciones['n_celular']; ?></p>
  79.           <p>Nº de Bloqueo: <?php echo $row_rsReparaciones['n_bloqueo']; ?></p>
  80.           <p>Nº de Contacto: <?php echo $row_rsReparaciones['n_contacto']; ?></p>
  81.           <p>Email: <input style="width:300px;" name="correo" type="text" id="correo" value="<?php echo $row_rsReparaciones['correo']; ?>" readonly="readonly" /></p>
  82.           <p>Recibido por: <?php echo $row_rsReparaciones['recibido_por']; ?></p>
  83.           <p>Trabajo Realizado: <input name="trabajo_realizado" type="text" id="trabajo_realizado" /></p>
  84.           <p>Reparado por: <input name="reparado_por" type="text" id="reparado_por" /></p>
  85.           <p>Monto de la Reparación: <input name="monto_reparacion" type="text" id="monto_reparacion" /></p>
  86.           <p>Estatus: <select name="estatus" id="estatus">
  87.             <option selected="selected">seleccione el estatus</option>
  88.             <option value="EN REPARACION">EN REPARACION</option>
  89.             <option value="REPARADO">REPARADO</option>
  90.             <option value="NO TIENE REPARACION">NO TIENE REPARACION</option>
  91.             <option value="ESTREGADO">ENTREGADO</option>
  92.           </select></p>
  93.           <p>&nbsp;</p>
  94.           <p><input name="" type="submit" value="Actualizar Orden" /></p>
  95.           <input type="hidden" name="MM_update" value="form" />
  96.           <input name="mail" type="hidden" id="mail" value="correo" />
  97.         </form>
  98.         </div>
  99.         <!-- end of div.box-container -->
  100.         </div><!-- end of div.box --><!-- end of div.box -->
  101.      
  102.       </div><!-- end of div#mid-col -->
  103.      
  104.       <div id="right-col"><!-- end of div.box --><!-- end of div.box -->            
  105.       </div><!-- end of div#right-col -->    
  106.      
  107.       <span class="clearFix">&nbsp;</span>    
  108. </div><!-- end of div#content -->
  109. <div class="push"></div>
  110. </div><!-- end of #container -->
  111.  
  112. <div id="footer-wrap"></div>
  113.  
  114. <p>&nbsp;</p>
  115. </body>
  116. </html>
  117. <?php
  118. mysql_free_result($rsUsuarios);
  119.  
  120. mysql_free_result($rsReparaciones);
  121. ?>

Etiquetas: correo, html, mysql, sql, tras, variables, usuarios
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 06:38.