<?php$p = 11;$q = 3;echo $p % $q;?>
% is the modulo operator. Unlike in C we can use it get reminder or floating point numbers in PHP.
Previous Question Next Question
Your comments will be displayed only after manual approval.