Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    Please explain what you mean and what you’re trying to do. Please don’t use images to show code. If you want help with code, best to use pastebin.com or gist.github.com to share it and then paste a link to that here.

    Thread Starter roshanbi

    (@roshanbi)

    I want to add a form in html where the values have php GET parameters set to them.

    <html>
    <body>
     <form action="https://pay.mytmoney.mu/Mt/web/payments" method="POST">
    		<input  name="appId" value="<?php echo $_GET[ 'appID' ]; ?>"/>
    		<input  name="merTradeNo" value="<?php echo $_GET[ 'merTradeNo' ]; ?>"/>
    		<input  name="payload" value="<?php echo $_GET[ 'encryptedPayload' ]; ?>"/> 
    		<input  name="paymentType" value="<?php echo $_GET[ 'paymentType' ]; ?>"/>
    		<input  name="sign" value="<?php echo $_GET[ 'sign' ]; ?>"/>
    		<p><input type="submit" value="Pay By my.t money"/></p>
    		</form>
    Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    OK, you’ve asked about this many times before. Please stop with the duplicate posts. Please.

    Is your question how to use $_GET in wordpress? See https://developer.www.ads-software.com/reference/hooks/query_vars/

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘php in wordpress page’ is closed to new replies.