Tagged Questions
0
votes
0answers
5 views
jqxchart website traffic chart
I'm trying to create a chart for my website traffic showing amount of traffic by date.
I've chosen jqxchart to do that job which is available here: ...
0
votes
3answers
44 views
Jquery, ajax, json, mysql_query is not working
show_page.php:
<?
session_start();
include("includes/function.php");
$static = mysql_query("SELECT * FROM fb_pages WHERE user_id = '$_SESSION[user_id]' AND page_value = '1' ") or ...
0
votes
2answers
44 views
How to store multiple parameters passed as POST in database
I have passed JSON encoded parameters by POST which we have captured and decoded in another PHP file. I have used the following code to do that.
$entityBody = file_get_contents('php://input');
...
0
votes
1answer
16 views
Output is not showing in windows phone application with Json, php
I am not getting an error in the code but still its not showing any output in the application, I am trying to get the data form php, MySql in Json response.
the application only shows the loading bar ...
0
votes
0answers
18 views
MySQL equivalent of PostgreSQL 9.3 JSON functionalities
Reading from the PostgreSQL 9.3 release announcement:
With PostgreSQL 9.3, dedicated JSON operators have been introduced and
the number of functions expanded to 12, including JSON parsing
...
0
votes
2answers
36 views
Android authentication error in http connection android.os.networkonmainthreadexception
I developed a code to login with android,Json ans Mysql, my code work in the emulator (android 2.1) but it crash in the smartphone (4.1) and this is the error in the log cat
error in http connection ...
0
votes
2answers
20 views
Can json transfer longblob in php?
I used mysql to store the picture and it is stored by longblob.
Now I need use json the transfer the data of longblob.
The json_endcode($data) return null.
How to do it?
-1
votes
1answer
45 views
JSON login in MVC [on hold]
Ok, looking for guidance / examples on where to go from here. I have a web app built with Yii and trying to incorporate an ios app now using the same business logic.
Trying to authenticate the app ...
0
votes
1answer
47 views
I have the error of parsing a JSON object to String in Android
I wanted to learn about Android in connection with php and I found a code in this web:
demo web
So, the code works perfectly fine, but when I want to do the select it says that there is an error when ...
1
vote
0answers
18 views
Storing KineticJS json string in mySQL and then get it with other page to reload the canvas
I hope you will understand what my problem is...
I built a little T-Shirt-Shop with KineticJS.
I store the stage with toJSON() in a json-string and I save that in mySQL database.
Now when I try to ...
4
votes
1answer
41 views
storing heterogeneous json objects in same MySQL table?
What is the recommended way of storing heterogeneous json strings into the same MySQL table?
I've got some other tables in this MySQL database that store information other than JSON objects, so I ...
-1
votes
1answer
36 views
Posting results from Android wifi scan to SQL/MySQL database using JSON
How can I send the results of my wifi scan to SQL/MySQL database i have created to populate values SSID, BSSID and RSSI using JSON? I have so far been able to output these results to a list (see below ...
0
votes
1answer
17 views
mysql timestamp array to javascript date array using php and josn
Hi there I am building a system that collect data. I store the data in mysql database and display it using amCharts. I making archive chart that displays change in the data over time. I have problems ...
-1
votes
1answer
37 views
PHP Prepared Statement Result Array Not Finding Correct Value
the PHP below works fine in instances of insertion, but with a select query of bound parameters, not much luck has come through with the json reading. The application I'm creating now always returns ...
0
votes
1answer
30 views
How to get mysql row count using JSON parsing onto Android TextView?
I have a php file that returns a single number (i.e. 360). How can I get that number to appear in my android textview. I am able to do this with arrays that look like this:
...