Envío email
Saludos, tengo una tabla envio_email
Con campos: id, nombreamigo, emailamigo
1. Esta tabla se cargara y visualizara en un archivo (recomender.php) y al apretar la tecla submit
Serán enviadas registro por registro a otro archivo : enviado.php (que no lo he puesto todavía)
2.El problema es que desde este archivo (recoemnder.php) no esta funcionando el envío hacia el otro archivo
RECOMENDER.PHP :
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
}
-->
</style></head>
<body>
<table width="400" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="39"><div align="center">id</div></td>
<td width="156"><div align="center">nombre amigo </div></td>
<td width="205"><div align="center">emailamigo</div></td>
</tr>
<?php
include("conexion.php");
$link=Conectarse();
$ssql = "SELECT * FROM envio_email ";
$rs = mysql_query($ssql,$link);
$num_total_registros = mysql_num_rows($rs);
while($row=mysql_fetch_array($rs))
{
echo" <tr valign=\"top\">"
. " <td>$row[0]</td>"
. " <td>$row[1]</td>"
. " <td>$row[2]</td>"
. " </tr>"
."";
}
?>
</table>
<?php
for ($i=1;$i=$num_total_registros;$i++)
{
echo"<form method=\"POST\" action=\"enviado.php\">"
. "<input type=text name=\"$row[2]\" size=20 ><br>"
. "<input type=\"submit\" value=\"buscar\" name=\"buscar\">"
. "</form>"
."";
}
?>
</body>
</html>
Con campos: id, nombreamigo, emailamigo
1. Esta tabla se cargara y visualizara en un archivo (recomender.php) y al apretar la tecla submit
Serán enviadas registro por registro a otro archivo : enviado.php (que no lo he puesto todavía)
2.El problema es que desde este archivo (recoemnder.php) no esta funcionando el envío hacia el otro archivo
RECOMENDER.PHP :
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
}
-->
</style></head>
<body>
<table width="400" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="39"><div align="center">id</div></td>
<td width="156"><div align="center">nombre amigo </div></td>
<td width="205"><div align="center">emailamigo</div></td>
</tr>
<?php
include("conexion.php");
$link=Conectarse();
$ssql = "SELECT * FROM envio_email ";
$rs = mysql_query($ssql,$link);
$num_total_registros = mysql_num_rows($rs);
while($row=mysql_fetch_array($rs))
{
echo" <tr valign=\"top\">"
. " <td>$row[0]</td>"
. " <td>$row[1]</td>"
. " <td>$row[2]</td>"
. " </tr>"
."";
}
?>
</table>
<?php
for ($i=1;$i=$num_total_registros;$i++)
{
echo"<form method=\"POST\" action=\"enviado.php\">"
. "<input type=text name=\"$row[2]\" size=20 ><br>"
. "<input type=\"submit\" value=\"buscar\" name=\"buscar\">"
. "</form>"
."";
}
?>
</body>
</html>
1 respuesta
Respuesta de llarensj