Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to make combination for 1-6 in PHP. For example we have range of 1-6 possible combinations are

1-2, 1-3, 1-4, 1-5, 1-6, 2-3, 2-4, 2-5, 2-6, 3-4, 3-5, 3-6, 4-5, 4-6, 5-6  

PHP algorithm for creating above combinations is required.

share|improve this question
2  
@M_Yasin fun apart, this question is too basic or is a homework assignment which you are too lazy to do, please avoid such googlable/common sense questions next time :) – djd Dec 16 '11 at 12:39
looks like a class assignment question. – Frank Dec 16 '11 at 12:44

closed as not a real question by casperOne Mar 28 '12 at 17:49

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

up vote 2 down vote accepted

Here goes:

for ($i = 1; $i < 6; $i++)
{
    for ($n = ($i + 1); $n <= 6; $n++)
    {
        echo "$i-$n, ";
    }
}
share|improve this answer
echo '1-2, 1-3, 1-4, 1-5, 1-6, 2-3, 2-4, 2-5, 2-6, 3-4, 3-5, 3-6, 4-5, 4-6, 5-6';
share|improve this answer
hahahaha....... – user898741 Dec 16 '11 at 16:41
rolf ..........=)) – eureka Dec 17 '11 at 4:37
Love that one. :) – Udo Held Dec 17 '11 at 9:00

What exactly do you intend to use the string for? Either way, the following will output the strings that you have indicated.

for($i = 1; $i < 6; $i++)
{
    for($ii = 1; $ii < 7; $ii++)
    {
        echo $i . '-' . $ii . ' ';
    }
}
share|improve this answer
Why do you use $ii ? – webarto Dec 16 '11 at 12:47

Not the answer you're looking for? Browse other questions tagged or ask your own question.