Posts by apprendiiz • 9 points
1 post
-
0
votes2
answers67
viewsA: How to read two integer variables on the same line with PHP?
Just use the code below, in the explode you can change the 'separator', in the example is a comma but could be a space for example: explode(' ',$numero); <?php declare(strict_types=1); $numero =…