I want to write a file three.php which loads one.php and two.php one after other, i.e. two.php should load after one.php is received. And of this should happen after clicking a button present in three.php
my code for one.php
<?php
header("Content-type: image/png");
$image = imagecreatetruecolor(800, 700);
$red = imagecolorallocate($image, 250, 0, 0);
imagefilledellipse($image,10,10,10,10, $red);
imagepng($image);
?>
code for two.php
<?php
header("Content-type: image/png");
$image = imagecreatetruecolor(800, 700);
$red = imagecolorallocate($image, 250, 0, 0);
imagefilledellipse($image,10,10,10,10, $red);
imagepng($image);
?>
so help with the code of three.php which should these two php files using two different buttons