Código PHP:
-- Estructura de tabla para la tabla `noticias`
--
CREATE TABLE `noticias` (
`id` int(50) NOT NULL auto_increment,
`titulo` varchar(200) NOT NULL,
`nota_corta` varchar(1000) NOT NULL,
`nota_completa` varchar(7000) NOT NULL,
`imagen` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
Código PHP:
<FORM METHOD="POST" ACTION="insert_noticia.php">
<table align="center" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="54%" id="AutoNumber1" height="95">
<tr bgcolor="#CC3300">
<td height="19" colspan="6" class="style2"><span class="Estilo13"><font face="Verdana" size="1">
SECCION NOTICIAS:</font></span></td>
</tr>
<tr>
<td height="19" colspan="6"> </td>
</tr>
<tr>
<td width="25%" height="19"><font size="1" face="Verdana" class="Estilo6">Titulo:</font></td>
<td width="1%" height="19"> </td>
<td width="74%" height="19" colspan="4">
<label>
<input name="titulo" type="text" size="60">
</label> </td>
</tr>
<tr>
<td width="25%" height="19" class="Estilo6">Nota Corta:</td>
<td width="1%" height="19"> </td>
<td width="74%" height="19" colspan="4"><textarea name="nota_corta" cols="70" rows="10" id="nota_corta"></textarea></td>
</tr>
<tr>
<td width="25%" height="19" class="Estilo6">Completa:</td>
<td width="1%" height="19"> </td>
<td width="74%" height="19" colspan="4"><textarea name="nota_completa" cols="70" rows="10" id="nota_completa"></textarea></td>
</tr>
<tr>
<td width="25%" height="19"> </td>
<td width="1%" height="19"> </td>
<td width="74%" height="19" colspan="4"> </td>
</tr>
<tr>
<td height="19" colspan="6"> </td>
</tr>
<tr>
<td height="19" colspan="6"><div align="center">
<input name="Reset" type="RESET" Value="Limpiar Datos">
<INPUT NAME="boton" TYPE="SUBMIT" VALUE="Ingresar Nota">
</div></td>
</tr>
</table>
</form>
Código PHP:
<?php
$con = mysql_connect("localhost","usuario","password");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("base_de_datos", $con);
$sql="INSERT INTO noticias (titulo, nota_corta, nota_completa) VALUES ('$_POST[titulo]','$_POST[nota_corta]','$_POST[nota_completa]')";
if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
//echo "1 record added";
mysql_close($con);
?>
Alguien podria ayudarme con esto?.
Se agradece de antemano.
Saludos