Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
11-03-2002, 03:40 PM
|
#1
|
Member
Registered: Nov 2000
Posts: 368
Rep:
|
PHP if statements and variables
hi,
this is driving me up the wall
i am typing to make an if statement that will work out if a certain value is given from a database then it will perform a certain task
for example: if the database says the value is 1 then it changes the html to a different button is loaded if its 2 then an extra button is loaded and so on
every time i issue the statement i get back parse errror on line x
i have even looked it up and i cannot find the answer, here is what i am typing
if($lalala == '1'){
dothis();
}
and it fails every time
any ideas??
|
|
|
09-24-2003, 01:27 AM
|
#2
|
Member
Registered: Apr 2002
Location: Los Gatos, CA
Distribution: boring redhat 9
Posts: 163
Rep:
|
A debugging trick I use when I can't for the life of me find the problem is to comment out the if($lalala section. Right above it, do something like "echo $lalala" so you can see what value is being compared.
As for the code shown, looks fine to me.
|
|
|
09-24-2003, 04:28 AM
|
#3
|
LQ Guru
Registered: Apr 2002
Location: Atlanta
Distribution: Gentoo
Posts: 1,280
Rep:
|
try double quotes. may still fail, but try it anyway.
also, where was $lalala declared. i had that problem because i thought some variables were global but werent
|
|
|
09-24-2003, 04:41 AM
|
#4
|
Member
Registered: Aug 2003
Location: Belgium
Distribution: Debian (server), Kubuntu (desktop)
Posts: 248
Rep:
|
Even if $lalala isn't declared, it shouldn't give you a parse error, it will just return false.
Could you post some more code, it could be that the line before the if statement is causing you trouble.
|
|
|
09-24-2003, 12:45 PM
|
#5
|
Member
Registered: Oct 2002
Location: FDR India
Distribution: RH9, Knoppix, MEPIS
Posts: 65
Rep:
|
Re: PHP if statements and variables
Quote:
Originally posted by antken
i am typing to make an if statement that will work out if a certain value is given from a database then it will perform a certain task
every time i issue the statement i get back parse errror on line x
i have even looked it up and i cannot find the answer, here is what i am typing
if($lalala == '1'){
dothis();
}
|
What's the output of the sql query? I can't see anything wrong with the if. AFAIK, don't need to use quotes when the value of the variable is numeric.
regards
theN
|
|
|
All times are GMT -5. The time now is 10:21 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|