
February 13th, 2013, 05:02 AM
|
|
Registered User
|
|
Join Date: Feb 2013
Posts: 12
Time spent in forums: 1 h 44 m 39 sec
Reputation Power: 0
|
|
PHP5 - Hide Payment Informaton form user!
Greetings everyone on this forum..
today i need help/suggestion for how to hide payment information from end user
let me clear my self a bit more by example; now i use following code to handle payment:
Code:
<form method = "POST" action = "https://www.moneybookers.com/app/payment.pl" name="frmMB" target="_blank">
<input name="pay_to_email" value="my@email.com" type="hidden" />
<input name="recipient_description" value="My Compnay" type="hidden" />
<input name="return_url" value="My Return URL Here" type="hidden" />
<input name="return_url_text" value="Return To My Website" type="hidden" />
<input name="cancel_url" value="My Cancel URL" type="hidden" />
<input name="status_url" value="mailto:status url/email" type="hidden" />
<input name="language" value="EN" type="hidden" />
<input name="logo_url" value="mylog.png" type="hidden" />
<input name="amount" value="Product Price" type="hidden" />
<input name="currency" value="USD" type="hidden" />
<input name="detail1_description" value="Product ID:" type="hidden" />
<input name="detail1_text" value="Product Name" type="hidden" />
<input type="image" src="images/MB.png" alt="Pay Through Skrill (Moneybookers)" title="Pay Through Skrill (Moneybookers)" />
</form>
but the problem is any expert end user can easily change page source code and miss-use that
so, what i want. i want to hide those information. when when use click on payment my php script will pass those information as post values and redirect to payment site..
i hope i m clear. (sorry for my bad English)
any help would be highly appreciated
thanks in advance
best regards
|