Search found 2 matches

by Austin
Sat Apr 07, 2012 3:09 am
Forum: Coding
Topic: Small script question..
Replies: -1
Views: 1331

Re: Small script question..

This: "The increment operator (++) does not work like most other things in PHP. It actually alters the value of the variable it operates on, instead of returning the result of the operation and leaving the operand untouched." is very helpful. Thanks. I actually knew how to get it to work. ...
by Austin
Fri Apr 06, 2012 8:57 pm
Forum: Coding
Topic: Small script question..
Replies: -1
Views: 1331

Small script question..

I have a very small script that I need help with. I'm learning PHP, and I can't figure out why this loop won't work. Please help! =] Here it is: <?PHP $counter = 0; $start = 1; for($start; $start < 11; $start++) { $counter = $counter++; print $counter . "<BR>"; } ?> I posted this on anothe...

Go to advanced search