need help with images
Posted: Thu Jan 14, 2010 4:26 pm
Hi, this is relate to switch images, let say that i have two php files, and each files has one images called (red-images.png and yellow-images.png).
I'm trying to create switch program in php using two buttons of (red and yellow) buttons, and any time i click on that of those two buttons it will change images.
I'm using included statments to put or
my question is that how do i can write that php code to allow me to develop switch images button between red.php or yellow.php in index.php page using two of those buttons using
please help thanks.
AM
I'm trying to create switch program in php using two buttons of (red and yellow) buttons, and any time i click on that of those two buttons it will change images.
I'm using included statments
Code: Select all
(<?php include(); ?>)Code: Select all
<?php include('yellow.php'); ?>Code: Select all
<?php include('red.php'); ?>.Code: Select all
<?php include(); ?>!AM