Hello,
Issue 1:
I would like to be able to not expose my hidden fields when someone right clicks on a page to see the code behind it.
I currently have:
<form name="form1" method="post" action="https://abc.asp?">
<input type="hidden" name="A" value="123" />
<input type="hidden" name="B" value="456" />
<input type="hidden" name="C" value="https://123.com" />
I tried the the code below but it did not do any good since PHP runs when the page loads.
<?php
$A = file_get_contents('A.txt');
?>
<input type="hidden" name="A" value="<?php echo $A; ?>" />
What is the accepted way of coding this situation?
Thank You for your time.