Jump to content

Is this correct


ryanfilard

Recommended Posts

miko is correct we cannot help unless we know the code that sets the values of the variables your checking in your IF statement..

 

also why did you put parenthesis around this var?

 

($_SESSION['MM_Username'])

 

 

and this var

(!empty($_SESSION['MM_Username']))

should probably look more like this

!(empty($_SESSION['MM_Username']))

Link to comment
https://forums.phpfreaks.com/topic/240222-is-this-correct/#findComment-1233924
Share on other sites

  Quote

<?PHP 
  if ((!empty($_SESSION['MM_Username'])) && $row_recordmeq['blockera'] == '1' && ($_SESSION['MM_Username']) == '$userverf')
  echo 'submit';
?>

It does not seem to be working

 

Variables are not parsed within single quotes. Remove the quotes around the $userverf variable

Link to comment
https://forums.phpfreaks.com/topic/240222-is-this-correct/#findComment-1233927
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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