please tell me how to use a number in php that i can increase using code and display that number using code.
do you get me?
php number
Moderator: General Moderators
Re: php number
You could do. $number=5; $number++;
echo $number. Or you could use a for loop to output to a certain number
echo $number. Or you could use a for loop to output to a certain number
Re: php number
No, not really. The literal answer to your question is simply to use a variable for the number. But I'm sure that's not what you're really trying to ask. Tell us what it is that you are trying to do and we can give you an appropriate answer.giga wrote:please tell me how to use a number in php that i can increase using code and display that number using code.
do you get me?