Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been trying to work a simple form-based temperature converter, but I'm currently getting a white screen, and I cannot see what is wrong with the code. In addition, any ideas / suggestions for best practice are most welcome!

<?php // convert.php

if (isset($_POST['temperature']))   
    $temp = sanitize_string($_POST['temperature']);

if (isset($_POST['scale']))
{
    if ($_POST['scale'] == 'fah')
        $conv = 'fah';
        $output = intval((5 / 9) * ($temp - 32));
    elseif ($_POST['scale'] == 'cel')
        $conv = 'cel';
        $output = intval((9 / 5) * ($temp + 32));
    else
        $output = '';
}
?>

<html>

<head>
    <title>Temperature converter</title>
</head>

<body>
    <?php
    if (isset($_POST['submitted']) and isset($conv))
    {
        if ($conv == 'fah')
            print("$temp degrees Fahrenheit is $output degrees Celcius");
        elseif ($conv == 'cel')
            print("$temp degrees Celcius is $output degrees Fahrenheit");
    }
    ?>

<form method="post" action="convert.php">
    <label>Temperature <input type="text" name="temperature"></label>
    <label>Celcius <input type="radio" name="scale" value="cel"></label>
    <label>Fahrenheit <input type="radio" name="scale" value="fah"></label>
    <input type="hidden" name="submitted" value="yes">
    <input type="submit">
</form>
</body>

</html>

<?php
print_r($_POST);

function sanitize_string($var)
{
    $var = stripslashes($var);
    $var = htmlentities($var);
    $var = strip_tags($var);
    return $var;
}
?>
share|improve this question
1  
Turn on error reporting in your php.ini. – Lightness Races in Orbit Apr 12 '11 at 14:43

4 Answers

up vote 4 down vote accepted

You forgot to use curly braces on the inner if/elseif on line 11. It should look like the following:

if (isset($_POST['scale']))
{
    if ($_POST['scale'] == 'fah') {
        $conv = 'fah';
        $output = intval((5 / 9) * ($temp - 32));
    }
    elseif ($_POST['scale'] == 'cel') {
        $conv = 'cel';
        $output = intval((9 / 5) * ($temp + 32));
    }
    else
        $output = '';
}

Try to avoid the shorthand if-syntax where you can leave off the curly braces.

share|improve this answer
I didn't recognize it at first glance either (+1) – Michael Rose Apr 12 '11 at 14:43

Your $conv variable is only visible inside those if-statements. Add its declaration right on top:

<?php
$conv = null;
// your code

And then check if (isset($_POST['submitted']) && $conv !== null)

Edit: As @halfdan said, you are missing curly braces since you want to execute more than one statement in the if-else-clauses.

share|improve this answer
That doesn't seem to make a difference, does $var need to be declared for isset($var) to work? – persepolis Apr 12 '11 at 14:46
Have you tried it? Scope is scope, if you only define it inside those if statements, isset($conv) will always return false outside... – Michael Rose Apr 12 '11 at 14:50
He's correct with $conv, didn't notice it myself (+1). – halfdan Apr 12 '11 at 15:26

You have mismatched conditionals.

You're getting a blank screen because parsing your script fails and you have error reporting turned off.

share|improve this answer
Ah, I thought something was odd, thanks for the pointer. – persepolis Apr 12 '11 at 14:49

Use $searchengine to find pages about "php white page", and you'll get:

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.