What is wrong?
if($_GET['data']) && ($_GET['kullaniciadi']) {
print '--''; }
else
print '--';
two is not possible to query?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You have messed up your parentheses. Try this:
The parentheses are for the
ifstatement, not each condition. The conditions to be evaluated go inside. In your case you have 2 conditions, and theifwill execute if both are evaluated totrue.If you do need to put the conditions inside parentheses too, make sure they balance:
Also note that by changing that in your code above, it still won’t work. You have an extra single quote in the
printof yourifblock. Change it to be the same as the one in yourelseblock.