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

  • Home
  • SEARCH
  • 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 7885195
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T04:59:52+00:00 2026-06-03T04:59:52+00:00

I am currently trying to send a string to a to a php script

  • 0

I am currently trying to send a string to a to a php script which will eventually return a JSON file.
Here is code i’m using to send the string:

var str = "testString";    
$.post("php/getTimes.php", str,
    function(data){
            console.log(data.name);
        console.log(data.time);
    }, "json");

In the ‘getTimes’ php file I am simply trying to receive the ‘str’ variable I am passing. Any ideas how to do this? It seems like it should be pretty simple.

  • 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-03T04:59:53+00:00Added an answer on June 3, 2026 at 4:59 am

    You have to name attributes in POST data either with serialized string:

    var data = "str=testString";
    $.post("php/getTimes.php", data, function(json) {
        console.log(json.name);
        console.log(json.time);
    }, "json");
    

    or with map:

    var data = {
        str : "testString"
    };
    
    $.post("php/getTimes.php", data, function(json) {
        console.log(json.name);
        console.log(json.time);
    }, "json");
    

    To handle this variable in PHP use:

    $str = $_POST['str'];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm currently trying to send a post to a php script, which seems to
I am trying to send a name:value pair to a php script using the
Hey, I'm currently trying to send an image file to a web server using
I'm trying to send email to my site users (ASP.NET, VS2010), currently I'm using
I am trying to send JSON data from a form using the XMLHttpRequest object.
I'm trying to send an array to a PHP script via POST method. First
I'm currently trying to code an app to send mass SMS to 300+ numbers
I am currently trying to send some data from and Android application to a
I'm currently trying to implement a socket server that enables the clients to send
I'm currently trying to port an app from asp.net to php, however I just

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.