Jump to content

what am i doing wrong?


dezkit

Recommended Posts

//index.php


<form action=passconfirm.php method=post>

<input type="text" name="pass"><br>
<input type="text" name="pass_c"><br>
<input type="submit" value="submit">

</form>

 

//passconfirm.php



<?
$pass = $_POST['pass'];
$pass_c = $_POST['pass_c'];

if($pass != $pass_c){
echo "Passwords do not match.";

if($pass != $pass_c){
echo "Passwords match.";

if($pass == false || $pass_c == false)
echo "One or more of the fields were not filled in.";

?>

 

heheh, my first 'attempt' on writing a php script, any details why it doesnt work :D

Link to comment
https://forums.phpfreaks.com/topic/98259-what-am-i-doing-wrong/
Share on other sites

you have lots of errors in this:

do this:


<?
$pass = $_POST['pass'];
$pass_c = $_POST['pass_c'];

if($pass != $pass_c){
echo "Passwords do not match.";
}

if($pass == $pass_c){
echo "Passwords match.";
}

if($pass == false || $pass_c == false){// This is never defined... Where are you calling this false?
echo "One or more of the fields were not filled in.";
}
?>

Link to comment
https://forums.phpfreaks.com/topic/98259-what-am-i-doing-wrong/#findComment-502765
Share on other sites

<?php
$pass = $_POST['pass'];
$pass_c = $_POST['pass_c'];

if($pass != $pass_c){
echo "Passwords do not match.";
}

else { echo "passwords match!";}



if($pass =="" || $pass_c ==""||empty($pass)||!isset($pass)||!isset($pass_c)||empty($pass_c))
{
echo "One or more of the fields were not filled in.";
}
?>

Link to comment
https://forums.phpfreaks.com/topic/98259-what-am-i-doing-wrong/#findComment-502777
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.