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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T11:42:12+00:00 2026-05-27T11:42:12+00:00

I have a function that is calling a php page on a remote server

  • 0

I have a function that is calling a php page on a remote server that is not reaching the server. This function was working until I checked it today, when the customer told me that the counter was not updating. The param being passed in is a string, the alert shows the parameter ok, but the res.counterValue value is not coming back from the php page.

function getCounterJSON(param) {
    //alert('param: '+ param);
    $.getJSON('http://domainname/path/view.php?callback=?', 'counter=' + param, function(res) {
        //alert('return value '+res.counterValue);
        document.getElementById(param).innerHTML = '&nbsp&nbsp&nbsp' + res.counterValue + ' views';
    });
}

Callback function on the PHP page

{
    echo $_GET['callback'] . '(' . "{'counterValue' : $counterValue}" . ')';
}

The counterValue is retrieving from the db ok too.

  • 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-27T11:42:13+00:00Added an answer on May 27, 2026 at 11:42 am

    You should use json_encode instead of constructing your own JSON, like this:

    echo json_encode(array('counterValue' => $counterValue));
    

    Unless you use JSONP (and you’re not, since the dataType parameter of jquery.Ajax is not set to "jsonp"), you don’t need the callback.

    Apart from that, the reason why your code doesn’t work is that it separates strings with single quotes ('). According to the JSON spec, strings must be enclosed with double quotes (").

    Also, you should use DOM functions (or their jQuery equivalents, such as append) instead of innerHTML.

    Either way, HTML entities must be terminated with a semi-colon; you want   (although some browsers will render the invalid &nbsp as well).

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

Sidebar

Related Questions

I have a php function in a php page called encrypt_password that I use
I have a function that is recursively calling itself, and i want to detect
I have the view function in django that written like a dispatcher calling other
I have a function that looks like this class NSNode { function insertAfter(NSNode $node)
I usually work with .NET but I have a php page that calls an
I have a script that calls a php page via jquery/ajax. The results would
This is driving me nuts, I have a login function that checks to make
I have a javascript function that I am calling from an image onClick event
I have this site here I have an ajax request that calls a php
So I have function that formats a date to coerce to given enum DateType{CURRENT,

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.