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
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
Share on other sites

Hi I just uploaded some back up files to my website and was able to get it working again but now it has a bunch of n's all over the front page. Can someone have a look and tell me what they think might fix the problem? www.allgamecheats.info

Thanks

Link to comment
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.