json_encode is a PHP function that converts a PHP value into a UTF-8 JSON encoded string.

learn more… | top users | synonyms

0
votes
1answer
21 views

How can I create js array from json object returned from php?

Javascript has this fin line of code that alerts you what type of object you are working with. It is the following: alert(Object.prototype.toString.apply(obj)) So, I am working with php and js - ...
0
votes
2answers
15 views

JMS Serializer doen't expose one property

I making a RESTful app with Symfony and FOSRestBundle. FOSRestBundle uses JMS Seriazlizer to serialize data to json format. I have everything working with one little issue. This is my Entity class ...
0
votes
0answers
19 views

How can I use JSON mobile application in flash builder 4.6

mi código es el siguiente : "my code is the following:" <fx:Script> protected function view1_creationCompleteHandler(event:FlexEvent):void { refreshBO = new RefreshBO(); ...
-1
votes
2answers
47 views

Using php variables inside JSON [closed]

I have a query to look up the user's info in a php file. I am using json_encode in the same file to send the data to Ajax so that it can be displayed using .html() function. The problem is, the php ...
0
votes
2answers
19 views

Setting Danish Character Text

I am getting some strings from json. My string contains special characters like "æ" from Næstved an many more like "ø" from køkken. But When I set Text these strings to ant textview, I get my strings ...
-2
votes
3answers
48 views

Take off '[' from Json string?

I have a JSON return string from MongoDB [{'api_calls_per_day': 0.29411764705882354, '_id': ObjectId('51948e5bc25f4b1d1c0d303a'), 'api_calls_total': 5, 'api_calls_with_key': 3, ...
0
votes
1answer
39 views

PHP json_encode and XSS

This question has been asked many times. See here, here and here Based on the answers in those questions I did some tests and I'm forced to ask the same question again as none of the answers appear ...
1
vote
2answers
58 views

TypeError: ObjectId('') is not JSON serializable

My response back from MongoDB after querying an aggregated function on document using Python, It returns valid response and i can print it but can not return it. Error: TypeError: ...
1
vote
1answer
37 views

Fetching data from the server to Backbone giving me a weird json

I'm trying to fetching data from the server with backbone, this is my request: I initialize the view with this: // Backbone view initialize this.collection = new Dropdown.Collections.Brands(); ...
0
votes
1answer
88 views

XCode -> ASIHTTPRequest-> php -> mysql -> json_encode ->xcode response -> table view

I want to do this.Get data from table view controller send request through ASIHTTPRequest: -(void)getData { NSURL *url = [NSURL URLWithString:@"http://10.10.10.10/application.php"]; //some ...
0
votes
0answers
43 views

Jqgrid wont load Json Data

I have been looking for a grid program for awhile and after looking through these pages came up with Jqgrid as the one to go for. So I am new to this. Issue I am having is loading my grid with the ...
0
votes
1answer
37 views

HTTP Error 500 (Internal Server Error) in Drupal

Iam providing datas using json to an ios app using php. But while running the code in browser, it is showing Server error. If there is no values in the database, it shows {"posts":null} as provided ...
-1
votes
2answers
39 views

How NOT to double encode a JSON in PHP [closed]

I have an array as such- $blah = array( 'a' => <huge_json_encoded_string>, 'b' => <another_json_encoded_string> ); Now, I want: {'a': ...
0
votes
1answer
22 views

get object variables in abstract class

I have a abstract class which implements the JsonSerializable Interface. version 1: abstract class MyBase implements JsonSerializable { public function jsonSerialize() { ...
0
votes
3answers
57 views

JSON output from PHP

I have data in my database as COl1 | COL2 fruit | apple, grape, berry vegetable | tom, pot, leaf If I query for fruit, I want COL2 to read for the query and data is split and output echo ...
1
vote
3answers
31 views

Why does the PHP json_encode function convert UTF-8 strings to hexadecimal entities?

I have a PHP script that deals with a wide variety of languages. Unfortunately, whenever I try to use json_encode, any Unicode output is converted to hexadecimal entities. Is this the expected ...
0
votes
2answers
33 views

Get an array element by key php

I have an array of (many) arrays, encoded at different depths. The problem is that I know the key of the element I am searching for, but not the depth of the encoding. So for example it might be ...
0
votes
1answer
41 views

How to generate a pass from 2 different json_encodes

I use this method to generate a pass: public function setJSON($JSON) { if(json_decode($JSON) !== false) { $this->JSON = $JSON; return true; } $this->sError = 'This is not ...
0
votes
1answer
23 views

Unable to parse 2 dimensional json data using jqery sent from server using php

$.post('ol_st_checker.php',function(d){ //this method is going to check who ever is online $.each(d.uinfo,function(index,value) { alert(index+'='+value); ...
2
votes
1answer
77 views

JSONArray cannot be converted to JSONObject Android

I am trying to consume json data from a server in android app. the format of data which is from a cakePHP web app looks like this; [{"Chapter":{"id":"1","chapter":"4","chaptertitle":"The Bill of ...
0
votes
0answers
16 views

php file fail to be executed with file_get_contents() in json array

I return these data (second_img_url,third_img_url and file) in html file by jquery(ajax) but when this file finish_create.php comes, I found PHP script in it not executed at all. $data=array( ...
1
vote
2answers
56 views

php json encode - array keys not output as strings

So I have a php array like this: $myArray = array( 'name' => 'Series Name', 'data' => array( array("2012-11-13",0.71), array("2012-11-14",0.45), array("2012-11-15",0.65), ...
0
votes
1answer
44 views

How to print json array using jquery ajax?

i am stuck at some json parsing, i am populating some fields using jquery's ajax function, i found the desired result, but dont know how to print it, here is my code function logged_in_users() { ...
0
votes
3answers
69 views

json_encode() on a multidimensional array - with string keys

I am creating an very large multidimensional array using PHP. Each object contains Name, ID, ParentID and Children. Children is an array of more objects in the same format. It is critical I name the ...
0
votes
2answers
36 views

json formatting_adding a tag to it

here is the PHP file that im using to generate the JSON with: <? $databasehost = "wbw.com"; $databasename = "wtest"; $databaseusername ="w"; $databasepassword = "123"; $query = "SELECT * FROM ...
-1
votes
1answer
55 views

PHP json_encode not working with chinese character set [closed]

<?php header("Content-type: text/csv; charset=GB2312"); $arr = array('丂','亐'); echo json_encode($arr); ?> Instead providing chinese character array, json_encode return null values.
4
votes
2answers
57 views

Insert results of multiple tables into one json_encode()

Excuse my language mistakes, I speak French. I did some research on this site and elsewhere, but what I have found didn't solve my problem. I am doing a site where people can post their stories. I'm ...
0
votes
1answer
44 views

I cannot seem to get data into JSON correctly

Hello I have spent quite bit of time trying to get my data to look like this in JSON as a sample: var json = { "id": "347_0", "name": "Nine Inch Nails", "children": [{ "id": ...
2
votes
3answers
168 views

Creating Google Pie Chart based on JSON data using CodeIgniter

I tried to create a pie chart based on example here In my controller (mycontroller/json) i have the following code: public function json(){ $whatever = '{ "cols": [ ...
-1
votes
0answers
29 views

How to make an array out of mysql table data for arbor.js? [closed]

I have a mysql table and would like to use its data in a site using http://arborjs.org/. I tried creating an an array from the data to match the formated required by arbor (below) using a while loop, ...
0
votes
0answers
56 views

javascript encode base64 for persian language & characters

I have a website that is in Persian language (only the content), and I'm doing AJAX calls here and there, but the problem I'm encountering is that I encode the data (let's say user info) that I'm ...
0
votes
1answer
117 views

Retrieving JSON data that is saved as text in mysql database using PHP

I have a form with number of elments, I encode all the data from the form using json_encode($_POST) and save it to mysql data base. This is the JSON data i have in mysql database ...
0
votes
0answers
57 views

AJAX Autofill textfield from php array

I'm using PhoneGap to build an iPhone app, and I need to auto-fill textfields with values set on a php array through json. I'm having an issue figuring out how to call these values from the php file ...
0
votes
1answer
46 views

How to handle false value in jsonarray

In my Php file while retriving value from mysql db if there are ny row present in db its returning the correct value but when there is no row present in databse then its returning false value thriugh ...
0
votes
1answer
105 views

How to implement a json response for sencha touch?

I am implementing a app with a login-screen. and I don't know how i should implement the json response for sencha touch. this is my login.js Ext.Ajax.request({ url: ...
1
vote
1answer
91 views

Highcharts Display values from sql via json

Hello I try to use Highcharts with data's from an sql Database by using json. There are all doing but I can't see any values I get the Data's with this script: <?php header('content-type: ...
-2
votes
1answer
42 views

I have a while loop and inside it I want to convert PHP to Valid json [closed]

My while loop is: I have tried to insert json_decode and json_encode and also each one of them without the other, but have had no luck. I keep getting the error JSON.parse: unexpected non-whitespace ...
0
votes
1answer
38 views

giving input to highchart using JSON

i'm new to highchart using a default JSON value given by highchart team wrks fine here is the link default high chart values but however when i try to give input as JSON as a local variable shows ...
-2
votes
0answers
43 views

Unwanted Schema change of Array by json_encode over XML String Object in PHP [closed]

I am unable to figure out the solution of simple problem with json_encode for the following two XML Schemas -- Single Indexed XML - <?xml version='1.0' encoding='utf-8' standalone='yes'?> ...
1
vote
3answers
61 views

add/combine json array to array in JSON file php

I have been trying to solve this problem for the better part of two days with no success. I am trying combine/add to a json array that is stored in a .json file on my server using php. This is a ...
0
votes
2answers
53 views

How to create JSON object from php string?

I have a large php string that consists of json style data and need to somehow convert this into a json object. My string looks like something below: (it is one BIG string). Syntax for the string ...
0
votes
1answer
41 views

How jsonValue.isObject() works?

Hell i would like to know how value.isObject()enter code here in below code works. String jsonString = "{\"key\":\"value\"}"; JSONValue value = JSONParser.parseStrict(jsonString); JSONObject object ...
0
votes
1answer
184 views

Passing php array for use in javascript using json_encode

I know this has been asked plenty of times before but still I have a problem after readaing all the other posts on the subject... Somewhere between my php code -and the javascript it is sitting in- my ...
0
votes
0answers
32 views

php ArrayObject:private ends json encoding

I am building an object that is being json encoded for storage. Here is the code that builds the object and then does the encode. <?php $obj = new stdClass(); $obj->name = "Joe Smith"; ...
0
votes
2answers
49 views

Jquery ajax json response not showing

Hey all my code is as follows: JS: $.ajax({ type: "POST", url: "master.php", contentType: "application/json; charset=utf-8", data: { "called": "REG", "fname": ...
1
vote
3answers
99 views

Prior to doing an INSERT, do you MySQL real escape data before JSON encoding it, or after JSON encoding?

Before inserting JSON-encoded data in MySQL, do you first JSON encode the data and then escape it prior to inserting, or do you first escape the data before JSON encoding it and then insert it?
0
votes
2answers
116 views

Fetch Json values [closed]

The below result I am getting from some URL . I am in need to fetch some values from the below json response in php ...
2
votes
2answers
35 views

Is it possible to detect key type with json_encode?

Quite a difficult to explain, but for example i have an array: $lol = array( 'key' => 'value', 'key_1' => 'value 1', 'simple_value', '0' => 'lol', 'key_array' => ...
0
votes
4answers
84 views

Encode accentuated characters in json using php

I've a query result that contains some accentuated characters Like : CollectionTitle => Afleuréss But when i write a json file with json_encode($Result_Array) and retrieve the result it shows : ...
0
votes
0answers
31 views

PHP Warning: json_encode(): Invalid UTF-8 sequence

I'm using PHP to populate my DataTables select boxes. If I add a new entry using the DataTables page (clicking in the 'Add' button), I have no problem with the accents (special characters), but if I ...

1 2 3 4 5 15