0
votes
2answers
376 views
Przekazywanie zmiennej do wnętrza funkcji
Posiadam poniższy kod:
<?php
global $max, $elementy_na_stronie;
$elementy_lacznie = 174;
$elementy_na_stronie = 10;
$biezaca_strona = $_GET['strona'];
$mak …
4
votes
6answers
221 views
Zasięg zmiennej
Witam,
znany komunikat:
A local variable named 'xxx' cannot be declared in this scope becouse it would give a different meaning to 'xxx', which is already used in a 'child' sc …