maagnuuus
| Total Posts | Last Post | Last Seen | Joined |
|---|---|---|---|
| 189 | 01/25/12 14:49:58 | 01/25/12 14:49:58 | 01/25/09 |
| Visitors Now | Visitors Today | Most Visits | Total Visits |
|---|---|---|---|
| 0 | 0 | 6 04/17/09 |
153 |
Essentially, it's the metal-music, but also a looooot of other music.
Hello !
Who is this? My name is Magnus.
I am a student at Linköping University and now I am doing my final year. I study "society logistics".
I love the autumn plus that I am a true master at flipping pancakes in the air, mwuhahaha !! ^-^
I'm out running and sporting aswell. Cooking and cleaning etc, hehe.
Trigonometry is pretty fun too :P
Feel free to write a line or so !
| Title | Type | Date |
|---|---|---|
| Re: Grammar hammer | Reply | 01/25/12 |
| Re: What is Astronomy..? | Reply | 11/11/11 |
| Re: Need help identifying BGM. | Reply | 10/24/11 |
| Re: Need help identifying BGM. | Reply | 10/24/11 |
| Re: Need help identifying BGM. | Reply | 10/20/11 |
| Re: Cameo Appearances!! | Reply | 09/29/11 |
| Re: Cameo Appearances!! | Reply | 09/18/11 |
| Re: Most disliked Ranma 1/2 character | Reply | 09/18/11 |
| Re: You know you watch /read too much ______ when... | Reply | 09/04/11 |
| Re: You know you watch /read too much ______ when... | Reply | 09/04/11 |
06/18/11 05:41:31 | 0 Comments
08/10/10 12:42:03 | 0 Comments
05/23/10 01:22:20 | 0 Comments
12/09/09 14:53:54 | 1 Comments
06/29/09 12:55:07 | 2 Comments
02/12/09 05:19:08 | 0 Comments
02/07/09 02:03:38 | 0 Comments
Leave a comment
HalfDemonCali
12/09/10
(Sorry for the late reply DX)
Original comment »
vichigo
10/31/10
Original comment »
YuniYasha
07/23/10
Original comment »
YuniYasha
06/29/10
$biggest_value = 0;
$second_biggest_value = 0;
for($i = 0; $i < sizeof($array); $i ++)
{
$current_value = $array[$i];
if($current_value > $biggest_value)
{
$second_biggest_value = $biggest_value;
$biggest_value = $current_value;
}
}
echo 'The second biggest value is: ' . $second_biggest_value;
Not able to test this out atm, but it should work!
YuniYasha
06/29/10
Leave a comment