I am definitely a beginner. Here is what I am attempting to do. I am a ham (amateur) radio operator involved with other local ham radio operators that operate using a special event call sign at least twice a year. I have a website set up which the radio operators uploads to so other can see how they are doing. I would like to add the list of operators and show what band and mode they are operating on or that they are off the air. My thought is to have a series of images for each band and mode. Then have a web page for each operator in which they can select the band and mode. When they make their selection, I would like to copy the image file to another file name.
Below is one failed attempt to achieve what I wanted to do. The result always ends up being 80DIG.png being copied to VA3MSV.png no matter what I select. Any ideas would be appreciated
<html>
<head>
<title>VA3MSV Band Selction</title>
</head>
<body>
Hello John, VA3MSV.<br><br>What band are you currently on? Please select the band that you are currently operating on. When you go off the air please select "OFF THE AIR".<br><br>
<input type="button" onclick="<?php echo copy("OFFAIR.png","VA3MSV.png");?>" value="OFF THE AIR"></form><br>
<input type="button" onclick="<?php echo copy("160SSB.png","VA3MSV.png");?>" value="160 m SSB">
<input type="button" onclick="<?php echo copy("160CW.png","VA3MSV.png");?>" value="160 m CW ">
<input type="button" onclick="<?php echo copy("160DIG.png","VA3MSV.png");?>" value="160 m DIG">
<input type="button" onclick="<?php echo copy("80SSB.png","VA3MSV.png");?>" value=" 80 m SSB">
<input type="button" onclick="<?php echo copy("80CW.png","VA3MSV.png");?>" value=" 80 m CW ">
<input type="button" onclick="<?php echo copy("80DIG.png","VA3MSV.png");?>" value=" 80 m DIG"><br>
</body>
</html>