Jump to content

[SOLVED] if statement problem


ironman32

Recommended Posts

I've created some 'if' statements to process form data.

<?php

$age = $_POST['age'];
$weight = $_POST['weight'];
$medical = $_POST['medical'];



if (empty ($_POST['age']) ){

header("Location: lose.php?msg= Please enter your age and weight");

}

if (empty  ($_POST['weight'])){


header("Location: lose.php?msg= Please enter your weight and age");

}


if(($_POST['weight']) > 19){


header("Location: acute.php?msg= Please consult your doctor before carring out these exercises");
}


if(($_POST['age']) >60){


header("Location: acute.php?msg= Please consult your doctor before carring out these exercises");
}

if(($_POST['medical']) == yes){
header("Location: acute.php?msg= Please consult your doctor before carring out these exercises");
}
else{
header("Location: lose_weight.php");
}

?>

The idea is to redirect the user if 'weight' is over 19,their age is over 60 or if 'medical' = yes. Other wise  they are redirected to a different page. The only 'if' statement that currently works is the 'medical' statement.

 

Could somebody give me some advice on this please?

Link to comment
Share on other sites

I'm surprised that one even works.  You should have single quotes around 'yes'.

 

Don't use empty, it is generally bad practice.  Did you know that the string "0" is considered empty?

 

Use:

if($weight != '')
{
   // whatever
}

 

And for God's sakes, clean your data!

Link to comment
Share on other sites

Thanks but I still need to get these 'if' statements to work

if(($_POST['weight']) > 19){


header("Location: acute.php?msg= Please consult your doctor before carring out these exercises");
}


if(($_POST['age']) >60){


header("Location: acute.php?msg= Please consult your doctor before carring out these exercises");
}

Link to comment
Share on other sites

I've changed the code to protect the data and I eliminated the parenthesis

<?php

$con = mysql_connect("localhost","dontwork","123qwerty123");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("db_name", $con);

$age = mysql_real_escape_string($_POST['age']);
$weight = mysql_real_escape_string($_POST['weight']);
$medical = mysql_real_escape_string($_POST['medical']);


if ($_POST['age'] == ''  ){

header("Location: lose.php?msg= Please enter your age and weight");

}

if ($_POST['weight'] == '' ){


header("Location: lose.php?msg= Please enter your weight and age");

}


if($_POST['weight'] > 19){


header("Location: acute.php?msg= Please consult your doctor before carring out these exercises");
}


if($_POST['age'] > 60){


header("Location: acute.php?msg= Please consult your doctor before carring out these exercises");
}

if($_POST['medical'] == 'yes'){
header("Location: acute.php?msg= Please consult your doctor before carring out these exercises");
}
else{
header("Location: lose_weight.php");
}

?>

But only the last 'if' statement works. If the fields are blank the user still gets taken to lose_weight.php. I still need to get the other statements to work.

Link to comment
Share on other sites

The medical statement shudn be working either!

 

ya have == yes

 

which makes yes a constant, not a variable/string

 

The other problem is that there is no die/exit statement after the header redirction.

 

if u have a header redirection, u dun want to continue with the script.

so place a die immediately afterwards

 

thats why it SEEMS that medical is the only one working.

Link to comment
Share on other sites

I've added 'die' after each header

if ($_POST['age'] == ''  ){

header("Location: lose.php?msg= Please enter your age and weight");
die();
}

if ($_POST['weight'] == '' ){


header("Location: lose.php?msg= Please enter your weight and age");
die();
}


if($_POST['weight'] > 19){


header("Location: acute.php?msg= Please consult your doctor before carring out these exercises");
die();
}


if($_POST['age'] > 60){


header("Location: acute.php?msg= Please consult your doctor before carring out these exercises");
die();
}

if($_POST['medical'] = 'yes'){
header("Location: acute.php?msg= Please consult your doctor before carring out these exercises");
die();
}
else{
header("Location: lose_weight.php");
die();
}

?>

But I can't seem to redirect the user to lose_weight.php. Even if age < 60 , weight < 19 and medical ='no' , I still get redirected to acute.php.

Link to comment
Share on other sites

But I can't seem to redirect the user to lose_weight.php. Even if age < 60 , weight < 19 and medical ='no' , I still get redirected to acute.php.

you haven't given that condition anywhere in your code .. you only set an 'if' statement for if $_POST['age'] is greater than 60, and $_POST['weight'] is greater than 19 .. nothing for less than.

 

this is all fine and dandy, as long as you're going to use the new variables .. otherwise, what you have below is a waste of space.

$age = mysql_real_escape_string($_POST['age']);
$weight = mysql_real_escape_string($_POST['weight']);
$medical = mysql_real_escape_string($_POST['medical']);

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.