Here is my while loop. Any suggestions?
<?php
error_reporting(E_ALL);
ini_set("display_errors", "on");
include('header.php');
$search = "current_page_item";
include('nav.php');
include('sidebar.php');
?>
<div class="primary">
<br/>
<?php
$userId = $_GET['id'];
echo "<div class=\"item_list\">";
$sql = "SELECT * FROM user ...
Hi,
i want to get all the values on "ListNumber", how can i loop it using php? thanks in advance :)
[ListNumbersList] => SimpleXMLElement Object
(
[Record] => SimpleXMLElement Object
(
[Returned] => 1
)
[ListNumber] => Array
(
[0] => 1
...
Possible Duplicate:
Best algorithm for detecting cycles in a directed graph
Hi
Could sb tell which algoritym I should use to find a loop/cycle in graph or tree ? Maybe sb has a pseudocode or sth I could start with.
...
I've been on a long google search trying to find the solution to this... I am creating a cv manager theme using a WordPress install to control content. I have managed to organise all WP posts in categories but would also like to list those posts in year groupings. Currently I have this:
<?php // Categories
$cvm_cat_args = array...
Hello everyone,
I have a NSMutablArray of UIButtons. I want to index through them and set their images based on other data. The problem I'm having is finding a loop to pass them all through (I don't want a long list of ifs).
for (UIButton *theButton in theButtons) {
A loop will not work. What other way is there to be able to set i...
If I have a list being generated in a loop, something like:
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div id="slide">
<ul>
<li class="slide-<?php //how can I generate an integer here ?>">
<a href="#">stuff</a></li>
</ul>
</div>
How could I append a sequential number to each of those classes, and/or those hrefs...
Hi
I have a bunch of NSStrings in a NSMutableArray. I have added them to the array and now I want to loop through the array, getting each object in it (the strings) and set them to a common value @"No Lessons".
This is how I have the loop so far: But how can I get the object then set it? Currently its fairly simple, just getting loopin...
let's say I have the following code:
for a in object.a_really_huge_function():
print a
In order to prevent a_really_huge_function from running multiple times, I am used to doing this in other languages:
a_list = object.a_really_huge_function()
for a in a_list:
print a
Is that necessary in Python? Will the part after in run ...
I'm converting some .dat files into .mat files using a function. I'm calling this function inside a loop to convert a number of files. There are some cases where my .dat file is corrupted and the function cannot convert and an error occurs, stopping the loop.
Now my question is: Is there any command wherein when the error occurs it shou...
I am working on a MFC project where I need a separate loop that will run continually or once every few seconds, and each time it may or may not need to run a Dialog to get some input from the user. I was thinking of using AfxBeginThread, but from what I have read about it, it doesn't really work with a continuous loop.
...
Basically, I need a way to return control to the beginning of a for loop and actually restart the entire iteration process after taking an action if a certain condition is met.
What I'm trying to do is this:
for index, item in enumerate(list2):
if item == '||' and list2[index-1] == '||':
del list2[index]
*<some ...
class Class1
{
[STAThread]
static void Main(string[] args)
{
int lap, avg = 0;
double time = 0;
Random generator = new Random();
time = generator.Next(5, 10);
for (lap = 1; lap <= 10; lap++)
{
time = (generator.NextDouble())* 10 + 1;
Console.WriteLine("Lap {0} with a lap time of {1} seconds!!!!"la...
Hello all. I'm having a MIPS issue here. What I'm trying to do is have the user input any number and have the program spell out the name of each digit in the number. So for example, the user inputs 495 and the machine would spell out "Four Nine Five". I'm trying to push each digit of the number onto the stack, then pop each one off. ...
Suppose I have a piece of Perl code like:
foreach my $x (@x) {
foreach my $y (@z) {
foreach my $z (@z) {
if (something()) {
// I want to break free!
}
// do stuff
}
// do stuff
}
// do stuff
}
If something() is true, I would like to break ('last') all the loops.
how can I do that?
I thought of two options, bot...
I am looking to assign objects in a loop. I've read that some form of eval(parse( is what I need to perform this, but I'm running into errors listing invalid text or no such file or directory. Below is sample code of generally what I'm attempting to do:
x <- array(seq(1,18,by=1),dim=c(3,2,3))
for (i in 1:length(x[1,1,])) {
eval(parse(...
The while loop isnt working. i get an error when it hits the break to get out of the loop. the error is no loop statement to break out of.
static void Main(string[] args)
{
accounts myclass = new accounts();
string userin;
myclass.fillAccounts();
//int i = 0;
//while (i != 1)
do
{
}
while (userin !=...
Often, I will have an array holding a set of values each of which I need to process. Sometimes, the array will only hold a single set, in which case each value needs to be put through the process. Other times, the array will hold many sets, in which case each value will be an array and each value of those arrays will need to be processed...
I'm just starting to dig into some programming and decided to go with F#. As practice, I was trying to convert a script I made in .bat into F#. I'm having trouble creating a looping function that does more than one thing. Here is the code from the old script for this loop.
:Select
cls
echo.
echo Which Game?
echo.
echo 1. Assassin's C...
I have a table structure looking something like this. One outer table and in almost each td I got an inner table.
<table class="outertable">
<tr>
<td>
<table class="innertable">
<tr><td></td></tr>
<tr><td></td></tr>
</table>
</td>
<td>
<t...
Hi,
In my iPhone app I have a background task that starts running when the app enters the background state.
The task runs fine and is structured in a loop like this:
run.
sleep for 5 min.
run.
sleep for 5 min.
etc.
For some reason, the task stops running after a certain amount of time... say half an hour to an hour.
Can anyone help ...