Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7924825
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T17:57:45+00:00 2026-06-03T17:57:45+00:00

I’m new to PHP, I started about 3 weeks ago. I have a string,

  • 0

I’m new to PHP, I started about 3 weeks ago.

I have a string, which is used with $_POST to pass it to another page, the second page uses $_GET to get these url and split it as desired.

My problem is that, in my first page I use a String, and I want to encrypt it, so that I can pass it as a plan text. In the second page I must decrypt it and get it as an array.

So is there any encryption method or function I can use which is compatible with $_POST ( so I can send it to another page ) and decrypt it as an array ?

I need this method, because the second page is actually connecting to website and is a payment method. So i don’t want users to manually edit the url and lower the amount of $ for the product they get.

tnx for your help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T17:57:46+00:00Added an answer on June 3, 2026 at 5:57 pm

    What you probably want to do is pass the contents of the users cart (i.e. the items he’d like to order) to the payment site.
    Therefore, you should create a form like:

    <form action="URL/to/paymentPage.php" method="post">
    <!-- Item 1 -->
    <input type="hidden" name="items[0]" value="productID1"/>
    <input type="hidden" name="quantity[0]" value="quantity1"/>
    <!-- Item 2 -->
    <input type="hidden" name="items[1]" value="productID2"/>
    <input type="hidden" name="quantity[1]" value="quantity2"/>
    <!-- ... -->
    <!-- Item n -->
    <input type="hidden" name="items[n]" value="productIDn"/>
    <input type="hidden" name="quantity[n]" value="quantityn"/>
    
    <input type="submit" value="Order"/>
    </form>
    

    On the server in the file “URL/to/paymentPage.php” you can access the items using the following code:

    <?php
    $items = $_POST['items']; // Array of items ..
    $quantities = $_POST['quantity']; // The array of quantities for each item ..
    
    // Calculate the total price ..
    $totalPrice = 0;
    foreach($items as $idx => $itemID) {
      if($quantities[$idx]>0) {
        totalPrice += getPriceFromDB($itemID) * $quantities[$idx];
      }
    }
    
    echo 'Total Price to pay: '.$totalPrice;
    ?>
    

    where the function getPriceFromDB actually retrieves the price for the item/product with the id $itemID from your database or elsewhere… 🙂

    However, the user items are usually stored in the session, and, therefore, there is no need to submit the again.. 😉

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I want to count how many characters a certain string has in PHP, but
I would like to count the length of a string with PHP. The string
I used javascript for loading a picture on my website depending on which small
this is what i have right now Drawing an RSS feed into the php,
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I have a text area in my form which accepts all possible characters from
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
I have a jquery bug and I've been looking for hours now, I can't
link Im having trouble converting the html entites into html characters, (&# 8217;) i

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.