Tengo este codigo de crear sms pero necesito mas cosas
*UNA CAJA DE TEXTO EN MI PANEL PARA PONER EL CODE CE CREE Y PONERLO
*UNA TABLA AUTOMATICA DE TOPS RICOS
*Y UN CODE PARA PONER COSAS EN EL CATALOGO Y COMPRARLAS
*****************************
SI NECESITO ALGO MAS AYUDA
cODIGO:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
</head>
<body><title>Creador de SMS</title>
<style type="text/css">
<!--
.Estilo8 { color: #FF0000;
font-weight: bold;
}
.Estilo9 { font-size: 16px;
font-weight: bold;
color: #990000;
}
body,td,th {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
}
a {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #FF9900;
font-weight: bold;
}
a:visited {
color: #FF9900;
text-decoration: none;
}
a:hover {
color: #FF6600;
text-decoration: none;
}
a:active {
color: #FF9900;
text-decoration: none;
}
a:link {
text-decoration: none;
}
.Estilo10 {color: #663333}
-->
</style>
<center>
<?php
include("conectar.php");
if (isset($_POST['enviar'])) {
if ($_POST['clave'] != "") {
$query = "INSERT INTO `creador` (clave) VALUES ('".htmlentities($_POST['clave'])."')";
@mysql_query($query);
echo "<div align=\"center\"><font style=\"border:1px #FF0000 dashed; background-color: #FEFFF4; padding: 5px; font-weight:bold\">SMS Creado con Éxito</font><br><br><a href=\"crearsms.php\">Volver</a></div>";
} else
echo "<div aling=\"center\"><font style=\"border:1px #FF0000 dashed; background-color: #FEFFF4; padding: 5px; font-weight:bold\">Has dejado algún campo vacío</font><br><br><a href=\"crearsms.php\">Volver</a></div>";
} else {
?>
</center>
<center>
<table border="0" cellpadding="0" cellspacing="0">
<form name="form" method="post" action="crearsms.php">
<tr>
<td class="Texto" align="center"><b><font color="##990000" face="Verdana" size="2px">:: Crear SMS ::</font></b></td>
</tr>
<tr><td class="Texto" align="center"></td></tr>
<tr>
<td class="Texto" align="center">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<br><td class="Texto" align="center"><b>Codigo:</b></td>
</tr>
<tr>
<br><td><input style="border:1px #990000 dashed; background-color: #F7F5E8; color:#6A0000" type="text" name="clave" value=""></td>
</tr>
<tr>
<td colspan="2" class="Texto" align="center"><br><input style="border:1px #990000 solid; background-color: #FEFFF4; color:#6A0000" name="enviar" type="submit" value="Crear SMS" class="Boton"></td>
</tr>
</table>
</td>
</tr>
</form>
</table>
<? } ?>
</td>
</tr>
</table></center>
</body>
</html>