|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patcheserror (last revision 2015-02-21 09:10 UTC by pwwiur at mail dot com)Pull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-02-21 09:40 UTC] mazzanet@php.net
-Status: Open
+Status: Not a bug
[2015-02-21 09:40 UTC] mazzanet@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 19:00:02 2025 UTC |
Description: ------------ i dont know why it does't work i am teacher and i saw it when i was teaching a part of math called Divisor Test script: --------------- <html> <head> <title> arrays </title> <body> <?php $var=10; for($i=1;$i=$var;$i++){ $b= $var % $i; if($b=0){ echo $i; } } ?> <br> </body> </html> Expected result: ---------------- server cant show results Actual result: -------------- server cant show results