I have form in which I have two hidden fields. I want to secure the data in hidden fields so that no one can see it through page source and fire bug. I alreday used session and it's working but I cant use that. I need altrnative to It please help.
<form name="android" method="post" action="http://apps.createcoolapps.com/c2dm_send.ashx" target="_blank" onSubmit="return valid();">
<table align="center">
<?php $qry_id=mysql_query("select * from users where u_name='$_SESSION[u_name]'");
while($id_fetch=mysql_fetch_assoc($qry_id)){
?>
<input type="hidden" name="publisherid" value="createcoolapps" />
<input type="hidden" name="username" value="<?php echo $query_id[manager_uname];?>" />
<input type="hidden" name="pass" value="<?php echo $query_id[manager_pass];?>" />
<tr align="center">
<td style="width: 100px; font-family: Helvetica,Arial,sans-serif; font-weight: bold;">Select Appid:<br>
<select name="appid" style="border-style:hidden">
<option value="">Select any one</option>
<option value="QRScanner">app1</option>
<option value="app3">app3</option>
<option value="app4">app4</option>
</select>
</tr>
<tr align="center">
<td style="width: 100px; font-family: Helvetica,Arial,sans-serif; font-weight: bold;">Notification Message:<br>
<textarea name="pushmessage" style="width: 300px;"></textarea><br />
</tr>
<?php }?>