is there a way to do an if statement something like this
if ( $points>0 AND <30 ) {
i want the if statement to execute the code, if its between 0-30
if statement
Moderator: General Moderators
- markusn00b
- Forum Contributor
- Posts: 298
- Joined: Sat Oct 20, 2007 2:16 pm
- Location: York, England
Re: if statement
Yes:robertbarzyk wrote:is there a way to do an if statement something like this
if ( $points>0 AND <30 ) {
i want the if statement to execute the code, if its between 0-30
Code: Select all
if ($points > 0 && $points < 30) {
}