In computer science, conditional statements, conditional expressions and conditional constructs are features of a programming language which perform different computations or actions depending on whether a programmer-specified boolean condition evaluates to true or false.

learn more… | top users | synonyms (1)

0
votes
6answers
52 views

If statement not accepting the condition [closed]

i have form with personal details need to be submitted and received by email. I am passing few if condition not to have my empty form. But it doesn't seems to work. <?php ob_start(); ...
0
votes
1answer
4 views

ActiveRecord test Greater/Lesser Than inside Hash Condition

The Question: Is it possible to test within a hashed condition if an attribute of a joined table is greater/lesser than a value AN EXAMPLE: test if actors age is greater than ageVariable: Is it ...
2
votes
6answers
82 views

Double conditions in one line does second matter if first is false?

Okay, so I have this piece of code tested and I found there isn't any exceptions thrown out. public static void main(String[] args) { int[] list = {1,2}; if (list.length>2 && ...
1
vote
5answers
43 views

Python: finding index of an array under several conditions

I have the following problem. There are two n-dimensional arrays of integers and I need to determine the index of an item that fulfills several conditions. The index should have a negative element ...
-1
votes
1answer
29 views

Find condition number of a function with multi variables [closed]

I would like to find the Condition number of a function (f(x)) with multi variables (x). which can be calculated by C(x) = ||x||*||f'(x)||/||f(x)|| Here my function is f(x) = a*exp(b(x-s)) with ...
1
vote
2answers
48 views

Javascript condition

i have a problem. I try to show up a div when the visibility class is visible. My code isn't working.Please help me fix this. CSS: #nor1 {position:absolute;top:100px;left:100px;z-index:2;} #var1 ...
0
votes
1answer
20 views

How to create active object 'IN' condition query

my current query is as below and it works fine for single user: 1 ao.find(da.class, Query.select().where("user=?",user) Now, i want to change this query to fetch multi users data as below , but it ...
0
votes
3answers
38 views

Assign variable within condition if true

I know you can assign a variable in a condition like this: if ($var = $foo) However I don't need to do anything in the condition itself, so I'm often left with empty brackets. Can I simply assign ...
0
votes
2answers
48 views

How to show and hide buttons in grails depending on the condition?

In my controller I have conditions, for example if value is 80, then I need to show certain button in my view, if value is 50 then I need to show a different button in my view. How would I do this in ...
0
votes
2answers
34 views

Race condition with rails sessions

There is an array inside the session hash which I'm adding things to it. The problem is, sometimes multiple requests get processed at the same time (because ajax), and the changes a request makes to ...
-1
votes
0answers
40 views

Select interval of rows with condition

I have a vector: a=0 1 0 0 1 0 0 1 0 1 I want choose elements for each 2 elements but I get it only the element equal 1 In this case I will get element two and skip 2 elements but I get 5 element ...
1
vote
2answers
95 views

Troubles with Haskell condition

I'm a beginner in Haskell and have a trouble in the next block: up_heap :: Num a => [a] -> [a] -> [a] up_heap heap (h:t) = let ppos = quot (length heap) 2 in case ((ppos > 0) ...
-2
votes
0answers
20 views

aperteworkflow automatic step base on role

this image shows how the process that I want. I want to make automatic step, #{initiator} start the task (task_1), with muleScript, next step is automatic step base on #{initiator} role, exp: if ...
-1
votes
2answers
106 views

Python perform operation in string

So I'm trying to pass a variable operation (user defined) into a function and am having trouble trying to find a good way of doing it. All I can think of to do is hard code all the options into the ...
0
votes
0answers
12 views

Monitoring EAX register under OllyDbg

how can I monitor for example the EAX register under OllyDbg? For example: Program "Notepad" is currently runnĂ­ng. If I set a condition: If EAX == A5 Then Pause Program "Notepad". How can be this ...
0
votes
0answers
19 views

Loop confusion in a for loop, with a initial value of zero & it's conditions

In this program, I am confused of how the for loop even executes in this List Class in InsertItem method. public class List{ int[] a; int lastItem; public List(){ a = new int[10]; lastItem = -1; } ...
0
votes
1answer
43 views

Java char comparison does not seem to work

I know you can compare chars in Java with normal operators, for example anysinglechar == y. However, I have a problem with this particular code: do{ System.out.print("Would you like to do this ...
0
votes
1answer
28 views

Adding new column and index to a table with a billion records

I want to add a new column into to a table with billion records. To speed the up the select statement, I need to add a new index which will contain this column and the PK column. How long will it ...
1
vote
2answers
40 views

Bash: if (command) |(command)

I know that the following command returns 0 (true) or 1 (false) in the following conditions: hdparm -C /dev/sda |grep "active/idle" true if the disk is active, false otherwise. I'd like to ...
0
votes
0answers
26 views

Multiple condition if elseif statement

i have a small problem trying to echo the data from database with some conditions. The issue is that in the same table i have 3 different values at the same hour. The filter with if statement is ...
0
votes
3answers
41 views

Smarty - Too many conditions inside {IF} {/IF}

I've got the following problem - I need to use condition {IF} {/IF} with many variables, but the whole site just goes blank when I put the code: {if $product.id_category_default == 6 || ...
0
votes
1answer
40 views

Apply a different formula for each condition that is met in a certain data frame

Lets say that for example I have the following data frame called "df1" (which is actually part of a much larger data frame but this example will do for now): df1= [,1] [,2] [,3] 1 -0.5 ...
1
vote
0answers
42 views

How to bound primary key to custom ON condition in Yii Relations?

The problem: How to bound primary key to custom relation query? Context, what for: One Source can relate to several different Modifications (MANY_MANY), each modification relate to some Product ...
1
vote
1answer
32 views

How can i add if statement in adobe flash?

I want to have a counter and this counter increase in some case and then i need to check it with if statement. How can i do this? I mean there are two options and one of these option will increase ...
0
votes
1answer
14 views

Strange error in ciBonfire

1st case : $oTask->task_versions is false / $oTask->aAttachments is false Code : <?php if(($oTask->task_versions) || ($oTask->aAttachments)): ?> Here is what I am getting in my view : ...
-1
votes
1answer
27 views

Javascript condition to an alert

<script> var name, address, city, state, zip, birthdate , social, response1, info; //Function call - vitalinfo prompts user 7 times function vitalinfo() { name = ...
0
votes
1answer
42 views

Ant resource exists check

I have problem testing file existence with ant. I want to check if files exist in target test, and if not, I want download files in target download. But the download target will be executed always (if ...
-2
votes
2answers
40 views

Mysql PHP advanced condition

I would like to know if the following query with brackets really works. I have three conditions separated with OR, so I would like to know if it really takes only one of the three conditions or more ...
4
votes
1answer
80 views

using and (&&) operator in if statement bash script

I have three variables: VAR1="file1" VAR2="file2" VAR3="file3" How to use and (&&) operator in if statement like this: if [ -f $VAR1 && -f $VAR2 && -f $VAR3 ] then ... ...
1
vote
3answers
70 views

Python - Using string as condition in if statement

I am trying to do this: a = "1 or 0" if (a): Print "true" So I can use a string as the condition of an if statement. Is this possible?
-1
votes
2answers
48 views

My javascript for loop is only printing 1 rows out of an array with 3 rows

I don't know what the right condition should be on a for loop that loops through an array that will have a varying length depending on how many rows are in a table that I pull from and add to the ...
0
votes
3answers
45 views

If variable equals value php

I am trying to do a check before the data inserts into the MySQL query. Here is the code; $userid = ($vbulletin->userinfo['userid']); $sql3 = mysql_query("SELECT * FROM table WHERE ...
2
votes
2answers
26 views

How to create a new ordinal variable according to other variables?

Hi to all the members of the community. This question might seems identical to another that I asked some time before, so may be could be a repetition but the request output is definitely different ...
0
votes
2answers
20 views

trouble array and strict equal actionscrpt3

I have a trouble with arrays, on actionscript 3.0, I have read on adobe page that I can check if two var have the same information. var num1:Number = new Number(1); var num2:Number = new Number(1); ...
0
votes
1answer
36 views

R Retrieve column name under condition in a matrix

I have a matrix with 0 or 1 values. When a line has only one "1", I want to get in return the column name in which is the "1" value and in any other cases get "0". For the example below: test ...
0
votes
3answers
54 views

Check if year is leap year in javascript

function leapYear(year){ var result; year = parseInt(document.getElementById("isYear").value); if (years/400){ result = true } else if(years/100){ result = false ...
-1
votes
1answer
37 views

If condition not work regular in bash

Code if [ $setup==="y" ] then echo "kurulum:"$setup exit full_dir=$full_dir"/public" else echo "Sub-Public folder is exist? [public,web]" read ...
0
votes
2answers
51 views

R - How to sum objects in a column between an interval defined by conditions on another column

This comes as an application to this question:Sum object in a column between an interval defined by another column What I would like to know is how to adjust the answer if I want to sum the values in ...
0
votes
8answers
64 views

Need for loop to check 2 conditions before continuing

I'm currently developing a "Sokoban" game at a very basic level. I'm trying to make this for loop but cannot seem to complete it. My aim is to carry out an example of the movement code below, I feel ...
0
votes
1answer
60 views

select multiple values from one condition (PHP/MySQL)

I have a table which holds details of exams taken. Each exam entered into this table is entered as a pair of people i.e. two people per exam performed so you have per exam, two people. Each person has ...
0
votes
1answer
43 views

PHP: How to compare 2 Arrays?

I've two Arrays and would like to check, if there's any difference in it's values. I've two solutions (below) but I think there should be a better way I don't know. Data $old_data = array( ...
0
votes
3answers
49 views

foreach loop bigger than using perl

I have a hash of hashes, were I need to compare all the "master keys" with each other (these are numeric). Here is my code for that: foreach my $masterkey1 (keys %HOH){ foreach my $masterkey2 (keys ...
0
votes
1answer
33 views

Looking up value in one table to update another

I have one table that has user IDs, another table that as AD groups; certain AD groups tell you whether the client is a member of VIP, Pilot, Remote Access etc groups. When trying to create a view ...
0
votes
1answer
64 views

Korn shell - grouping conditions in an IF statement

I got the following snippet failing on ksh: var1="1" var2="2" if [ ( "$var1" != "" -o "$var2" != "") -a ( "$var1" = "$var2" -o " "$var1" = "x") ]; then echo "True" else echo "False" fi ...
1
vote
5answers
59 views

alternative to if(preg_match() and preg_match())

I want to know if we can replace if(preg_match('/boo/', $anything) and preg_match('/poo/', $anything)) with a regex.. $anything = 'I contain both boo and poo!!'; for example..
0
votes
1answer
48 views

mysql split field value and check condition

I have table column values like this, 10#9 10#2 10#9 18#10 16#1 11#2 I have to find the occurance of 10 query like select count(*) from table name where field_value= 10
0
votes
3answers
51 views

Newbie pointer rs.next

I would like to see only that products user is looking for them, but when second if is executed it will push(pointer or whatever is there) to next ID(id I have as unique so it will push to nowhere) ...
0
votes
1answer
32 views

Count records with a condition in XSLT

I have an xml with this structure: <emails> <record> <field name="host"><![CDATA[yahoo]]></field> <field name="user"><![CDATA[abc]]></field> ...
0
votes
1answer
38 views

Show Form depending on database condition

On initial startup of my application i am looking to check whether table within my database has any tuples within it, if this condition is true then i do not want my addDialog form to show however ...
3
votes
5answers
70 views

SQL with AND in the same column

I have a mySQL table named 'values' : values: file | metadata | value ________________________ 01 | duration | 50s 01 | size | 150mo 01 | extension| avi 02 | duration | 20s 02 | ...

1 2 3 4 5 23