Re: recover values independently of GET or POST used

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



buzon@xxxxxxxxxxxxxxxxxxxxxxx wrote:
I am using some expressions to load the value of a parameter when called, independently if used GET or POST method, using something like:

<?php
$mydata = (isset($_GET["mydata"])) ? $_GET["mydata"] : (isset($_POST["mydata"])) ? $_POST["mydata"] : 0;
  echo $mydata;
?>

The problem occurs with above code if I call it like: thispage.php?mydata=something , the answer is null (not even '0').

You probably need extra ()'s around the post check:

$mydata = (isset($_GET["mydata"])) ? $_GET["mydata"] : ((isset($_POST["mydata"])) ? $_POST["mydata"] : 0);

Though that's hard to read - I'd suggest going back to basics because when you revisit this code in a few months time, are you going to understand it?

--
Postgresql & php tutorials
http://www.designmagick.com/


--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [PHP Users]     [Postgresql Discussion]     [Kernel Newbies]     [Postgresql]     [Yosemite News]

  Powered by Linux