I have a code like this
<?php if
($trx->de_amount2 == '10000' ||$trx->de_amount2 == '15000'||$trx->de_amount2 == '20000'||$trx->de_amount2 == '25000'||$trx->de_amount2 == '30000' ):?>
ok
<?php else:?>
no
<?php endif;?>
I want to make multiples of numbers from 5000 to 1 million with a simple code not like this
$trx->de_amount2 == '10000' ||$trx->de_amount2 == '15000'
How do I do that?