Pleas can you help if possible:
$xx_array = array(64,65,66,67);
.
.
.
foreach($xx_array AS $xx) {
Works perfectly but what I would like to do is:
$yy='5,6,7,8';
$xx_array = array($yy);
.
.
.
foreach($xx_array AS $xx) {
When I do this only first number is dealt with!?
The reason why I want it this way because I need same numbers in multiple array-s so I taught to have it in separate php file and just add include so I change only one file if needed!