php - $_POST['hidd'] != '20' doesnt work correctly -


I just want to execute some code in "if": if ($ _POST ['hidd']! = '20') $ _POST works correctly but the problem is ! = '20' is in. How can i work it

Try this:

  if (isset ($ _ POST) ['hidd']) & amp; $ _POST ['hidd']! = '20') {// your code}    

Comments

Popular posts from this blog

Pass DB Connection parameters to a Kettle a.k.a PDI table Input step dynamically from Excel -

multithreading - PhantomJS-Node in a for Loop -

c++ - MATLAB .m file to .mex file using Matlab Compiler -