Champ obligatoire php
Résolu
Miimidedel
Messages postés
345
Date d'inscription
Statut
Membre
Dernière intervention
-
wolves'sbrother Messages postés 218 Date d'inscription Statut Membre Dernière intervention -
wolves'sbrother Messages postés 218 Date d'inscription Statut Membre Dernière intervention -
Bonjour,
Voilà je débute en phph et je fais un petit forum, juste un mini-ptojet, mais j'ai un souci.. J'aimerais par exemple que le champ Username soit obligatoire
J'ai trouvé une solution en php mais je comprends pas pourquoi ça ne marche pas :
-------------------------------------------------------------------------------------------
<?php
$username = $_POST['username'];
$password = $_POST['password'];
if(empty($username))
{
print("<center>Le '<b>Name</b>' est vide !</center>");
exit();
}
?>
-------------------------------------------------------------------------------------------
Et aussi.. Question : où dois je positionner dans le code html ?
-------------------------------------------------------------------------------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Login Page</title>
<link href="design.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="blabla.png" type="image/x-icon"/>
<link rel="icon" href="blabla.png" type="image/x-icon"/>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"</script>
</head>
<body>
<div id="header">
<h1>SupForum</h1>
</div> <div id="menu">
<ul>
<li><a href="index.php">Categories</a></li>
<li><a href="login.php">Topics</a></li>
<li><a href="login.php" class="right">Login</a></li>
<li><a href="index.php" class="right">Register</a></li>
</ul>
</div> <div id="content">
<h1>Register Page</h1>
<form method="post" action="page.php" enctype="multipart/form-data">
<fieldset>
<legend> Identification Informations : </legend>
<div>
<label for="username">Username: </label>
<input id="username" type="text" name="username" value="" />
<span style="color:red" ></span>
<!--<span class="info"></span>-->
</div>
<div>
<label for="password">Password:</label>
<input id="password" type="password" name="password" value="" />
</div>
<div>
<label for="password">Password Confirmation:</label>
<input id="passwordconf" type="password" name="passwordconf" value="" />
</div>
</fieldset>
<fieldset>
<legend> Personal Informations : </legend>
<div>
<label for="firstname">Firstname: </label>
<input id="firstname" type="text" name="firstname" value="" />
</div>
<div>
<label for="lastname">Lastname:</label>
<input id="lastname" type="text" name="lastname" value="" />
</div>
<label for="email">Email: </label>
<input id="email" type="text" name="email" value="" />
</fieldset>
<div>
<label for="avatar"> Avatar:</label>
<input id="avatar" type="file" name="nom" />
<input type="hidden" name="MAX_FILE_SIZE" value="1048576" />
</div>
<div>
<input type="submit" value="Submit" />
</div>
</div>
</form>
</div>
</body>
</html>
-------------------------------------------------------------------------------------------
Merci ! =D
Voilà je débute en phph et je fais un petit forum, juste un mini-ptojet, mais j'ai un souci.. J'aimerais par exemple que le champ Username soit obligatoire
J'ai trouvé une solution en php mais je comprends pas pourquoi ça ne marche pas :
-------------------------------------------------------------------------------------------
<?php
$username = $_POST['username'];
$password = $_POST['password'];
if(empty($username))
{
print("<center>Le '<b>Name</b>' est vide !</center>");
exit();
}
?>
-------------------------------------------------------------------------------------------
Et aussi.. Question : où dois je positionner dans le code html ?
-------------------------------------------------------------------------------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Login Page</title>
<link href="design.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="blabla.png" type="image/x-icon"/>
<link rel="icon" href="blabla.png" type="image/x-icon"/>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"</script>
</head>
<body>
<div id="header">
<h1>SupForum</h1>
</div> <div id="menu">
<ul>
<li><a href="index.php">Categories</a></li>
<li><a href="login.php">Topics</a></li>
<li><a href="login.php" class="right">Login</a></li>
<li><a href="index.php" class="right">Register</a></li>
</ul>
</div> <div id="content">
<h1>Register Page</h1>
<form method="post" action="page.php" enctype="multipart/form-data">
<fieldset>
<legend> Identification Informations : </legend>
<div>
<label for="username">Username: </label>
<input id="username" type="text" name="username" value="" />
<span style="color:red" ></span>
<!--<span class="info"></span>-->
</div>
<div>
<label for="password">Password:</label>
<input id="password" type="password" name="password" value="" />
</div>
<div>
<label for="password">Password Confirmation:</label>
<input id="passwordconf" type="password" name="passwordconf" value="" />
</div>
</fieldset>
<fieldset>
<legend> Personal Informations : </legend>
<div>
<label for="firstname">Firstname: </label>
<input id="firstname" type="text" name="firstname" value="" />
</div>
<div>
<label for="lastname">Lastname:</label>
<input id="lastname" type="text" name="lastname" value="" />
</div>
<label for="email">Email: </label>
<input id="email" type="text" name="email" value="" />
</fieldset>
<div>
<label for="avatar"> Avatar:</label>
<input id="avatar" type="file" name="nom" />
<input type="hidden" name="MAX_FILE_SIZE" value="1048576" />
</div>
<div>
<input type="submit" value="Submit" />
</div>
</div>
</form>
</div>
</body>
</html>
-------------------------------------------------------------------------------------------
Merci ! =D
A voir également:
- Champ obligatoire php
- Obligatoire - Accueil - Maison
- Darkiworld inscription obligatoire - Guide
- Easy php - Télécharger - Divers Web & Internet
- Tinder photo obligatoire - Accueil - Utilitaires
- Expert php pinterest - Télécharger - Langages
5 réponses
Bonjour,
Est que tu veux empêcher l'utilisateur de valider le formulaire tant qu'il n'a pas remplie le champ username, ou tu veux le rediriger vers le formulaire après validation s'il n'a pas remplie le champs username??
Est que tu veux empêcher l'utilisateur de valider le formulaire tant qu'il n'a pas remplie le champ username, ou tu veux le rediriger vers le formulaire après validation s'il n'a pas remplie le champs username??
ok.
J'ai ajouter une condition à la ligne 30 :
Cette condition affiche le formulaire si la variable $_POST['username'] n'existe pas ou si elle est vide.
Et une autre à la ligne 40 :
Cette condition affiche le msg "This field....." si la variable $_POST['username'] existe et vide
voici le code complet, si tu as besoin d'autre chose, n'hésite pas.
J'ai ajouter une condition à la ligne 30 :
if(!isset($_POST['username']) || empty($_POST['username']) ) {?> // tu mets le code de ton formulaire ici <?php } ?>
Cette condition affiche le formulaire si la variable $_POST['username'] n'existe pas ou si elle est vide.
Et une autre à la ligne 40 :
if(isset($_POST['username']) && empty($_POST['username'])){echo "This field cannot be empty !";}
Cette condition affiche le msg "This field....." si la variable $_POST['username'] existe et vide
voici le code complet, si tu as besoin d'autre chose, n'hésite pas.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <title>Login Page</title> <link href="design.css" rel="stylesheet" type="text/css"> <link rel="shortcut icon" href="blabla.png" type="image/x-icon"/> <link rel="icon" href="blabla.png" type="image/x-icon"/> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"</script> </head> <body> <div id="header"> <h1>SupForum</h1> </div> <div id="menu"> <ul> <li><a href="index.php">Categories</a></li> <li><a href="login.php">Topics</a></li> <li><a href="login.php" class="right">Login</a></li> <li><a href="index.php" class="right">Register</a></li> </ul> </div> <div id="content"> <h1>Register Page</h1> <?php if(!isset($_POST['username']) || empty($_POST['username']) ) { ?> <form method="post" action="test.php" enctype="multipart/form-data"> <fieldset> <legend> Identification Informations : </legend> <div> <label for="username">Username: </label> <input id="username" type="text" name="username" value="" /> <span style="color:red" ><?php if(isset($_POST['username']) && empty($_POST['username'])){echo "This field cannot be empty !";} ?></span> <!--<span class="info"></span>--> </div> <div> <label for="password">Password:</label> <input id="password" type="password" name="password" value="" /> </div> <div> <label for="password">Password Confirmation:</label> <input id="passwordconf" type="password" name="passwordconf" value="" /> </div> </fieldset> <fieldset> <legend> Personal Informations : </legend> <div> <label for="firstname">Firstname: </label> <input id="firstname" type="text" name="firstname" value="" /> </div> <div> <label for="lastname">Lastname:</label> <input id="lastname" type="text" name="lastname" value="" /> </div> <label for="email">Email: </label> <input id="email" type="text" name="email" value="" /> </fieldset> <div> <label for="avatar"> Avatar:</label> <input id="avatar" type="file" name="nom" /> <input type="hidden" name="MAX_FILE_SIZE" value="1048576" /> </div> <div> <input type="submit" value="Submit" /> </div> </div> </form> <?php }?> </div> </body> </html>
Une réponse dans le code qui suit. Note: je l'ai réécrit compatible HTML5:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Login Page</title>
<link href="design.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="blabla.png" type="image/x-icon"/>
<link rel="icon" href="blabla.png" type="image/x-icon"/>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"</script>
</head>
<body>
<header>
<h1>SupForum</h1>
</header>
<nav>
<ul>
<li><a href="index.php">Categories</a></li>
<li><a href="login.php">Topics</a></li>
<li><a href="login.php" class="right">Login</a></li>
<li><a href="index.php" class="right">Register</a></li>
</ul>
</nav>
<article>
<h1>Register Page</h1>
<form method="post" action="page.php" enctype="multipart/form-data">
<fieldset>
<legend> Identification Informations : </legend>
<p><label for="username">Username: </label>
<input id="username" type="text" name="username" value="" />
<?php if(isset($_POST['username']) && empty($_POST['username'])): ?>
<span style="color:red; text-align: center;" >Le <b>Name</b> est vide !</span>
<?php endif; ?></p>
<p><label for="password">Password:</label>
<input id="password" type="password" name="password" value="" /></p>
<p><label for="password">Password Confirmation:</label>
<input id="passwordconf" type="password" name="passwordconf" value="" /></p>
</fieldset>
<fieldset>
<legend> Personal Informations : </legend>
<p><label for="firstname">Firstname: </label>
<input id="firstname" type="text" name="firstname" value="" /></p>
<p><label for="lastname">Lastname:</label>
<input id="lastname" type="text" name="lastname" value="" />
</p>
<p><label for="email">Email: </label>
<input id="email" type="text" name="email" value="" /></:/p>
</fieldset>
<p><label for="avatar"> Avatar:</label>
<input id="avatar" type="file" name="nom" />
<input type="hidden" name="MAX_FILE_SIZE" value="1048576" /></p>
<p><input type="submit" value="Submit" /></p>
</form>
</article>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Login Page</title>
<link href="design.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="blabla.png" type="image/x-icon"/>
<link rel="icon" href="blabla.png" type="image/x-icon"/>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"</script>
</head>
<body>
<header>
<h1>SupForum</h1>
</header>
<nav>
<ul>
<li><a href="index.php">Categories</a></li>
<li><a href="login.php">Topics</a></li>
<li><a href="login.php" class="right">Login</a></li>
<li><a href="index.php" class="right">Register</a></li>
</ul>
</nav>
<article>
<h1>Register Page</h1>
<form method="post" action="page.php" enctype="multipart/form-data">
<fieldset>
<legend> Identification Informations : </legend>
<p><label for="username">Username: </label>
<input id="username" type="text" name="username" value="" />
<?php if(isset($_POST['username']) && empty($_POST['username'])): ?>
<span style="color:red; text-align: center;" >Le <b>Name</b> est vide !</span>
<?php endif; ?></p>
<p><label for="password">Password:</label>
<input id="password" type="password" name="password" value="" /></p>
<p><label for="password">Password Confirmation:</label>
<input id="passwordconf" type="password" name="passwordconf" value="" /></p>
</fieldset>
<fieldset>
<legend> Personal Informations : </legend>
<p><label for="firstname">Firstname: </label>
<input id="firstname" type="text" name="firstname" value="" /></p>
<p><label for="lastname">Lastname:</label>
<input id="lastname" type="text" name="lastname" value="" />
</p>
<p><label for="email">Email: </label>
<input id="email" type="text" name="email" value="" /></:/p>
</fieldset>
<p><label for="avatar"> Avatar:</label>
<input id="avatar" type="file" name="nom" />
<input type="hidden" name="MAX_FILE_SIZE" value="1048576" /></p>
<p><input type="submit" value="Submit" /></p>
</form>
</article>
</body>
</html>
c'est bizarre, je viens de l'essayer, ça marche!!
t'as rien de changer d'autre dans le code que t'as posté?
t'as rien de changer d'autre dans le code que t'as posté?
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre question
J'aimerais aussi qu'il s'affiche côté du champ username "This field cannot be empty !"