foreach is a looping construct that executes a given piece of code for each element in a list/collection/array. In contrast to a for loop, the foreach loop doesn't require the coder to maintain a counter variable to avoid off-by-one (fencepost) bugs.

learn more… | top users | synonyms (3)

1
vote
1answer
32 views

PHP Foreach on MySQLi Result set

I have this chunk of code which works on my local XAMPP testing server. The problem is, when pushed to the production server, it breaks. This isn't an issue with the database connection, and PHP/MySQL ...
-1
votes
3answers
60 views

Php array in a foreach loop

I have been trying to create a Multidimensional array from an already existing array. The reason I am doing this is so I can separate the super array into a more categorized version so that later on I ...
-9
votes
2answers
64 views

Foreach object loop

My already code: foreach (KeyValuePair<string, object> keyValuePair in items) { if (keyValuePair.Key == "animals") { Dictionary<string, object> animal = new ...
0
votes
2answers
68 views

Ignore Json data when property is missing

I tried to get the id Field dynamic post = fb.Get("/" + radListControl2.SelectedItem + "/feed?fields=message"); int count = (int)post.data.Count; for (int i = 0; i < count; i++) { ...
1
vote
3answers
33 views

Remove an object when in a for each loop

I'm making a survival game and trying to remove an object when it goes off the screen. Here is the code: Public Sub tmrEnemyMove_Tick(sender As Object, e As EventArgs) Handles tmrEnemyMove.Tick ...
0
votes
0answers
10 views

Is it possible to iterate on GroupBox

Is it possible to iterate using foreach loop on multiple geoupBox. I have 6 GroupBox named as gBox1,gBox2,gBox3,gBox4,gBox5,gBox6 AND each gBox contain 21 ComboBox out of which I want to select only ...
2
votes
2answers
32 views

Velocity does not resolve variable in foreach loop

I have very simple velocity template: <html> <head> <title>Velocity template</title> </head> <body> #foreach($p in $products) ...
5
votes
8answers
64 views

PHP: how to do foreach and start from sixth element of collection?

is it possible to start a foreach loop from specific element [sixth element]? im using this code: <?php $num=1; foreach($temp_row as $key => $value) { echo $num; ...
1
vote
2answers
26 views

Yii multi model with HAS_MANY Tabular form

I have been trying to find a solution to something that I believe is rather simple? What I would like to do is create a tabular form to collect some records for a survey. Table: survey_record id ...
0
votes
3answers
39 views

Assigning values to array of 'Combo Boxes' in a 'Group Box' using for each loop in c#

I have 10 comboBox in a groupBox for I just want to display a calculated value in respective comboBox like this say if I set a varible double i=08.00; then on button click cmboBox should display ...
3
votes
2answers
48 views

comparing the array values in the foreach loop

Hi I have the following php foreach loop, <?php foreach ($row['row'] as $inrow) { $slots_available = $inrow[2]; $cal_id = $inrow[3]; ...
0
votes
2answers
37 views

PHP - foreach looping double

I have this funny feeling like this is going to be something simple that my tired eyes have missed. Given the following array $query: Array ( [report_id] => 19 [facebook_id] => Array ( [0] ...
-4
votes
1answer
46 views

test each object in a list against every other object in the same list exactly once using python [closed]

To highlight what I am trying to do here is the equivalent in C code. for ( int i = 0; i < COUNT; ++i ) { for ( int j = i + 1; j < COUNT; ++j ) { foo( i, j ); } } ...where ...
0
votes
1answer
48 views

Previous row value being written

I am trying to only add values from rows where a checkbox named "Addbox" is true, the below code identifies when a checkbox is ticked and only adds those items to the users wishlist. However it adds ...
0
votes
2answers
36 views

Performance Issue (Nested Foreach Loops, Large Data Set)

I am working on an application for address standardization. I have a database table with 8000 rows, each row containing an address. My goal is to check each address against every other address in the ...
0
votes
8answers
105 views

Foreach Write Headers and Footers Cleanly

I often have code that goes something like this. StringBuilder sb=new StringBuilder(); IEnumberable<MyWidget> MyWidgets=GetMyWidgets(); if(MyWidgets.Count!=0) { sb.Append("This is ...
0
votes
2answers
30 views

Highlight every other row of a table in a foreach loop and highlight columns depending on value of row

I am in the process of 'revamping' my tables on my website. Currently, they are only sortable, but I would like to impliment highlighting and searchability. I'm not the best with javascript, so I ...
0
votes
0answers
5 views

Functor to implement passing by reference instead of std::mem_fun

There are multiple questions out here (argument by reference), with respect to passing by reference here of the object Value<int> in calculate. One solution is not to pass it as a reference, but ...
0
votes
0answers
29 views

For Worksheets for cells double loop circular

I have a code that uses a loop through cells to copy and paste according to if they contain the activecell. I want to do this in all sheets, and want to loop through sheets and loop through the cells ...
0
votes
1answer
54 views

underfined input foreach php to jquery

I loop with the same name in the input I want the user to disable the javascript, the process still takes place <?php $first = 1; $id = array('id' => 'addcart'); foreach($data['info'] as ...
-1
votes
1answer
32 views

display all results after foreach php loop not just last result [closed]

this is my first post to this forum, I realise a similar question has been asked many times and i can promise you I have tried most of them to adapt to my situation over the last two weeks. I need to ...
0
votes
2answers
34 views

for each loop with json data

I'm having a small problem while pulling tide data from the wunderground api. When I use the code below to pull the time of day for low tide I get an accurate answer one day, but a wrong answer the ...
-2
votes
3answers
41 views

Using variables outside of a foreach in PHP [closed]

foreach($Name as $key=>$value) { foreach($value as $key2=>$value2) { echo $value2; } } I want to use $value2 variable SET outside of the foreach. Is there anyway to do this ...
-4
votes
2answers
106 views

Object reference not set to an instance of an object - foreach loop [closed]

Right, So basically the error is that apparently the loop is empty. However, this is very weird as I have similiar loops running in other places in my application. The example comes from the MVC ...
1
vote
1answer
45 views

PHP add attribute to objects in foreach loop

So my problem is - I've div with this kind of structure: <div> <strong> Value 1</strong> <strong> Value 2</strong> <strong> Value 3</strong> </div> ...
0
votes
2answers
46 views

Create a table using foreach()

I have following PHP code contain 2 foreachs echo "<table class='table table-bordered'>"; foreach($resultOld as $key=>$value) { foreach ($value as $key1 => $subjects) { ...
4
votes
1answer
30 views

Get values of all checkboxes in repeater

When the user clicks a "Save Changes" button, I need to get the values of all the checkboxes inside a repeater. If I can't get the values, the ID is also ok. Master page code: <ul ...
0
votes
3answers
39 views

foreach loop in mvc razor to iterate each element from the model and display

I want to Display each element on Razor view from Model through foreach loop,I have no code in Controller when I run the Application , I get the Error: Object reference not set to Instance of an ...
0
votes
1answer
35 views

Datagrid Rows Loop

I am attempting to take the id of each row of the datagrid dgGrid that has a checkbox selected and place it into an array ruleids. I've looked up examples online and noticed that this loop comes up. ...
0
votes
4answers
34 views

Echo out key and value from array

I have an array called $topProductIdResults and it looks like the following: Array ( [11497522] => 2 ) The keys are prodcuct ID's and the value is the number of 5 star ratings that the product ...
0
votes
2answers
45 views

Get next element of array inside a foreach loop in perl without using next/skipping to next iteration of loop

I am new to perl and am facing some problem in skipping to next element of an array inside a foreach loop without reiterating the loop. Suppose I have the following case where I am going through a ...
0
votes
0answers
28 views

trouble getting php checkbox values to show up in resulting email

I've been looking for an answer for hours, and have tried multiple solutions from these boards and others, and I still can't find the answer. I'm really only looking to receive the checkbox data from ...
-5
votes
3answers
70 views

catch response from call [closed]

I am getting this error in my foreach statement. foreach statement cannot operate on variables of type because does not contain a public definition for 'GetEnumerator'. What does it means and how ...
-1
votes
3answers
38 views

PHP Foreach Loop Array Access

In this foreach loop: <?php $x=array("one","two","three"); foreach ($x as $value) { echo $value . "<br>"; } ?> How will you be able to access the string "two" individually outside ...
7
votes
2answers
128 views

PHP: My button doesn't properly work inside a foreach loop

I have this find_all() function which is written in a separate file: public static function find_all() { return self::find_by_sql("SELECT * FROM ".self::$table_name); } It was referenced at the ...
0
votes
0answers
17 views

Variable w/ predetermined value as the keys in associative arrays - PHP

PHP noob here, forgive me if this is a really obvious/banal question. I have looked for my answer and have yet to find it. In this example, variables $hm, $tomato and $trees are all assigned values ...
2
votes
0answers
14 views

mvc3 best way to remove a .tolist in global

I have a model which is a tolist and its ordered by date and then i have a foreach in the view model I was wondering how can i get a craigslist like effect when displaying the Date, .. if you look at ...
0
votes
3answers
43 views

Load distinct values from database into List<>

I made a Record POCO class with a foreign key to an Event (=sport discipline). A record can be linked to 1 event but an event can have multiple records (world record, olympic record, etc..). Now I ...
1
vote
1answer
31 views

Remove previous element from array if statement == true

I have a foreach loop that iterates through an array but I want to check if the array contains $item == 'survey-east-upper' and if that's true then hide the previous $item which is 'survey-east'. I've ...
0
votes
0answers
19 views

JQuery/PHP elements sorting error with foreach()

I have an elements that iam trying to re sort them using Jquery UI with PHP/MySql Actually my method that am always use is working well on Localhost, but it doesn't work on some servers! and MySQL ...
0
votes
4answers
58 views

How to slow down a loop with setTimeout or setInterval

I have an array called RotatorNames. It contains random things but let's just say that it contains ["rotatorA","rotatorB","rotatorC"]. I want to loop through the array, and for each item i want to ...
-2
votes
1answer
24 views

XNA foreach statement error

I keep getting this error in the code below. can somebody tell me what I did Wrong. foreach statement cannot operate on variables of type 'method group' because 'method group' does not contain a ...
-1
votes
1answer
28 views

Show array values within an array php

I have a piece of code that loops and displays values for job vacancies: <?php foreach($arrXML as $inner_arr) foreach($inner_arr as $value) { ?> <p>Job Ref: <?php echo ...
1
vote
1answer
22 views

Excel Looping through cells with vbTextCompare to assign categories

I have a spreadsheet which contains a summary Column(Column K) on each row. I need to match certain words in the summary column in order to assign a category name in a new column(Column V). I tried ...
-1
votes
0answers
12 views

SAP xml input to own designed output

Input xml: <row xmlns=""> <col>ENV</col> <col>8711555900999</col> </row> <row xmlns=""> <col>HDR</col> <col>ORDER</col> ...
0
votes
2answers
39 views

excecute a php file inside an 'if' condition [closed]

I have to execute some code in a loop, but every time I try to put all of it in the loop below, the result set gets crazy, giving me unreal data. So I figured to try to put the loop out of my code. I ...
-3
votes
0answers
74 views

Foreach break and continue in PHP select specific id [closed]

In addition to what i posted earlier today, Foreach break and continue in PHP As i forgotten to mention, the solutions you bring on helped me really to understand the process but as i used a ...
0
votes
5answers
92 views

What do these “for” loops do?

I'm only familiar with normal for loop declaration. Can anybody tell me what these for-loops are doing and how their conditions work? BufferedReader charSource = ...
-1
votes
1answer
64 views

Quantity for each item select to be posted and written to a mysql database table

$disabled in the below code repeatedly gets overwritten for example: Item 1 = Quantity 3 Check box = True Item 2 = Quantity 5 Check box = True Item 3 = Quantity 1 Check box = False The values ...
0
votes
4answers
83 views

Foreach break and continue in PHP

I am facing an problem. I have built a foreach loop in PHP: <?php $show = false; ?> <?php foreach ($this->items as $item) : ?> But I want to echo the first 20 items and continue ...

1 2 3 4 5 99