Hi i have some variables in one file - index.php looking like this:
$kPoln = floor(($getPoln*255)/$max);
$kPolnW = floor(($PolnW*255)/$max);
$kWsch = floor(($getWsch*255)/$max);
$kPoldW = floor(($PoldW*255)/$max);
$kPold = floor(($getPold*255)/$max);
$kPoldZ = floor(($PoldZ*255)/$max);
$kZach = floor(($getZach*255)/$max);
$kPolnZ = floor(($PolnZ*255)/$max);
and i want to send them to another file - image.php - it will serve as colors on some image, and that image will be displayed on index.php, how to do this??