0
votes
5answers
65 views
Javascript - if statement not working?
I'm trying to set a class to active depending on the url. I'm trying to use the code below, but in every case, it activates the active class for the second tab.
var pathname = …
2
votes
10answers
386 views
One Line ‘If’ or ‘For’…
Every so often on here I see someone's code and what looks to be a 'one-liner', that being a one line statement that performs in the standard way a traditional 'if' statement or 'f …
0
votes
6answers
122 views
More efficent way to do this?
I have a if function that works out how much of a users profile is completed however the way I include below was the best I could think of, however it seems really inefficient.
Wh …
0
votes
1answer
18 views
MutableArray loaded with a .plist file Boolean Value. How do I test whether True or False??
I seem to have a problem understanding how to conditionally test a boolean value loaded from a .plist to a mutablearray. I simply dont understand what i am supposed to do and con …
0
votes
3answers
121 views
How do I write this foreach loop as any other kind of loop?
foreach ($a as $b)
{
do function
}
0
votes
3answers
55 views
Ifstatement used to make a functionality button appear?
I am on my 2nd day(16th hour) of trying to get my delete button to do what I want with PHP. I have a site that is a social network that has user profiles. Users can leave comments …
0
votes
2answers
53 views
Two If selection while a select query
Hello I have this query :
SELECT o.id, o.id as oid, o.id as orderId, o.cid, o.date, o.state,
o.price, o.currency, o.lastChange, o.url AS permalink, o.period,
o.blog …
1
vote
1answer
48 views
Combining IF else with LEFT to hide columns
Hi Guys
I'm trying to write some code to Hide columns if the first 3 characters of cells in a range equal the contents of another. I have the code for hiding columns if cells in a …
0
votes
2answers
20 views
More than one value in Smarty {if}
Hy i have this code.
{if $isModerator && $order->kind==1}
bla bla
{/if}
and $order->kind can be 1,2,3,4,6
so making 5 if is not the idea any idea?
0
votes
2answers
82 views
INSERT IF NOT EXISTS type function for me to use without turning the column into primary key?
This script I'm working on is taking data from the web using python's urllib2 module and then putting it in a table. This data is basically just going to be in a table with one co …
1
vote
1answer
173 views
Ant (1.6.5) - How to set two properties in one <condition> or <if>
I am trying to assign two different strings to two different variables dependent on two booleans in Ant.
Pseudocode (ish):
if(condition)
if(property1 == null)
property2 …
0
votes
1answer
98 views
scheme and if condition
Hi
I want to return nothing when if condition is not met, for instance
(if x y z)
so if x is not met, z will be executed and I want to do nothing at z, just same as pythons "pas …
0
votes
2answers
48 views
Excel Embeded If Statements
In excel is it bad to have about 1000 embedded if statements? I have about 1000 options that I want to pre-populate in other excel fields, what is the best way to do this other the …
0
votes
5answers
93 views
When IF is best over Switch or vice versa [closed]
Possible Duplicate:
If/Else vs. Switch
Hi All,
I want to know when if statement is good over switch or vice versa.....
2
votes
8answers
142 views
Understanding the “||” OR operator in If conditionals in Ruby
Just briefly, why are the following three lines not identical in their impact?
if @controller.controller_name == "projects" || @controller.controller_name == "parts"
if @controll …
