Thanks for wanting to help me. There is a problem - the number is specified using the $ _GET parameter, there are checks that this number, etc., but you cannot deduct 1.000.000 from this number, it displays the same number, these are the main parts of the code:

(Comid parameter = 1000006)

$id = $_GET["comid"]; .... $id -= 1000000; echo $id; 

Conclusion:

 1000006 

What to do?

The most interesting thing to check is:

 if($id < 1000000) {} 

It passes right

  • Try $id = intval($_GET["comid"]); - Ivan Bolnikh
  • Ivan, did not help - LoBem Dev
  • @ screaming-voices In these lines, $ id is only viewed and inserted into the lines "". $ id. "" - LoBem Dev
  • @ screaming-voices 7.0.19 - LoBem Dev
  • @screaming-voices I copied. If this helps you with something: `` - LoBem Dev

0