insérer un champ de saisie
Bonjour,
J'ai une question qui est tellement toute bête que je n'arrive pas à trouver la réponse, j'ai trouvé plein de code élaboré pour ce genre de chose mais pas un petit truc tout simple comme je cherche...
Alors voilà, sur la page d'accueil de mon site, j'ai ajouté un champ à saisir et un bouton "s'inscrire (voir en bas de page.
Au clic sur le bouton OK, le champ doit s'enregistré dans le champ email de la table contact de Mysql.
Pas de problème pour créer la table contact et le champ email.
Mais quel est le code à insérer dans ma page html?
Merci d'avance pour ceux qui pourront m'aider...
Aj
Voici le code html de la page
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
| <html>
<head>
<title>....::::********::.... </title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="keywords" content="***">
<meta name="description" content="***">
<link href="style_css.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
a:link {
color: #999999;
text-decoration: none;
}
a:visited {
color: #999999;
text-decoration: none;
}
a:hover {
color: #000000;
text-decoration: underline;
}
a:active {
color: #999999;
text-decoration: none;
}
.Style1 {font-size: 12px; font-family: tahoma, arial, helvetica;}
-->
</style></head>
<body bgcolor="#C1CBAA">
<div align="center">
<table width="100%" height="95%" border="0">
<tr>
<td height="651"> <table width="0" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><div align="center">
<p align="right">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="772" height="450">
<param name="movie" value="load_site_AnesPM.swf">
<param name=quality value=high>
<embed src="load_site_AnesPM.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="772" height="450"></embed>
</object>
</p>
</div></td>
</tr>
</table><br><div align="center">Pour s'inscrire à la newsletter des ânes, faut mettre son courriel dans la case, et cliquer sur envoyer :
<input type=text size="40" name="email"> <INPUT type="submit" value="s'inscrire"><br><br>
Pour
suivre l'actualité du groupe sur Fessebouc : c'est là qui faut cliquer<br><br>
Pour
écouter les ânes sur maille spèce, ben c'est là</div></td>
</tr>
<tr>
<td height="40" valign="bottom"><div align="center">
<p class="Style1"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">***;aise émotion énergie
_ Site réalisé par Albane et<font color="#000000"> <a href="http://v****m">V***ie</a>_
2006 _<br>
</font><font size="1" face="Verdana, Arial, Helvetica, sans-serif">Nécessite
Macromedia <strong>Flash Player 7</strong> -
Cliquer <strong><a href="flashplayer/forcerledl.php?file=flashplayer7.exe">ICI</a></strong> pour le télécharger</font><font color="#000000"> </font></font></p>
</div></td>
</tr>
</table>
</div>
</body>
</html> |