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 6179197
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T00:36:46+00:00 2026-05-24T00:36:46+00:00

Im trying to replicate the following in php although i am stuck at Encoding.ASCII.GetBytes(paramList)

  • 0

Im trying to replicate the following in php although i am stuck at Encoding.ASCII.GetBytes(paramList)

HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url);
req.Method = "POST";
req.ContentType = "application/x-www-form-urlencoded";
string paramList = "paramList=ThruDate_" + thruDate.ToString() + "|OwnerLevel_" + ownerLevel;
Stream stream = req.GetRequestStream();
byte[] bytes = Encoding.ASCII.GetBytes(paramList);
stream.Write(bytes, 0, bytes.Length);
stream.Close();
  • 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-05-24T00:36:47+00:00Added an answer on May 24, 2026 at 12:36 am

    There’s no need to get an array of bytes in order to send POST data to some http server when using php.

    $postdata = "something=something";
    $ctx = stream_context_create(array(
        'http'=>array(
            'method'=>'POST'
            'content'=>$postdata,
            'header' => 'Content-type: application/x-www-form-urlencoded'
        )
    ));
    $responsedata = file_get_contents('http://...', false, $ctx);
    

    see also:
    http://docs.php.net/file_get_contents
    http://docs.php.net/context.http

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

Sidebar

Related Questions

Trying to replicate the following query using Zend_Db_Select . Any pointers? SELECT compounds.id as
I'm trying to replicate the following Ninject syntax in Unity, but not having any
I am trying to replicate the following formula from Excel in to a C#
I am trying to replicate the following social bar that is off to the
I'm trying to replicate the following sliding navigation menu functionality (the one with TOP
I'm trying to replicate the following exemple : http://www.leigeber.com/2008/04/map-your-users-using-the-google-maps-api-and-php/ How to integrate this PHP
I am trying to replicate the php function gzuncompress in C# So far I
Trying to replicate the docking controls in Visual Studio 2008. My application replays the
Im trying to replicate an effect as seen on http://www.fiat.co.uk/Showroom/#showroom/punto_evo/explore . I have made
I'm trying to replicate a UI like a gcalendar (only the layout not any

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.