If I understand your pattern correctly:
$c_level = floor((-1 + sqrt(1 + 4 * ($c_xp + 500) / 100 * 2)) / 2) - 1;
You are adding 100, then 400, then 500, 600, 700, 800, and so on. Because 100 kind of breaks the pattern, we are going to ignore it for now.
Assuming you were going after the pattern
Level XP
1 0-99
2 100-299
3 300-599
4 600-999
5 1000-1499
6 1500-2099
This would be easier, because the increments are 100, 200, 300, and so on. Anything under 100 would be level 1. Anything under 300 would be level 2. Anything under 600 would be level 3. Conveniently:
0+1=1 (hence 100)
0+1+2=3 (hence 300)
0+1+2+3=6 (hence 600)
and so on and so fourth. The sum of the first x integers is 0.5 * x * (1 + x) = y, where y is the sum - see http://en.wikipedia.org/wiki/Summation.
In our case, we have 100 times the sum. We can simply divide our XP by 100 to get y, and use the quadratic formula to solve for x. In the case if XP is 600, the level is 4.
600 / 100 = 6, and 0.5 * x * (1 + x) = 6. The quadratic formula tells us x is 3. We have to use floor() on it and add 1 for reasons I cannot explain. Long story short to adjust with the lack of patter under 500 points, we add 500 and subject 2 to the final amount for the formula to work.
100per level, so you could perhaps make a calculation to find that other than the first. – Jared Farrish Aug 25 '12 at 22:37