File: C:/xampp/htdocs/FograCT1/ccCMY.php
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Camera profile Check</title>
</head>
<body>
<?php
error_reporting(0);
$C=$_GET['C'];
$M=$_GET['M'];
$Y=$_GET['Y'];
?>
<form action="CMYcorrect.php" method="post"
enctype="multipart/form-data">
<table align="center" width=600>
<tr>
<td>Correct from CMY 504040:</td>
<td valign="top"><b><font size="-1">C: </font></b>
<input size="15" maxlength="50" type="text" name="C" value="<?php echo $C;?>"></td>
<td valign="top"><b><font size="-1">M: </font></b>
<input size="15" maxlength="50" type="text" name="M" value="<?php echo $M;?>"></td>
<td valign="top"><b><font size="-1">Y </font></b>
<input size="15" maxlength="50" type="text" name="Y" value="<?php echo $Y;?>"></td>
</tr>
<tr><td>
<br>
<label for="file">Upload jpg file:</label>
<br>
<input type="file" name="jpgfile" id="jpgfile" accept=".jpg, .jpeg" required>
</td>
</tr>
<tr><td>
<input type="submit" name="submit" value="Submit">
</td>
</tr>
<tr>
<td align="center"><font size="-2"> © <a href="mailto:[email protected]">Fred Kuo</a>, 2024. All rights reserved.<br><a href="http://www.fredkuo.idv.tw/wordpress/?p=1025">Read more.</a><br>
</td>
</tr>
</form>
</table>
</body>
</html>