|
|||||||
| JavaScript JavaScript (not Java) Discussion and technical support, including AJAX and frameworks (JQuery, MooTools, Prototype...) |
![]() |
|
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
#1
|
||||
|
||||
|
php json_decode . Help please
I have a varibale created in javascript as follows
HTML Code:
var jsonData = {"data1" : "dataContent"};
PHP Code:
PHP Code:
Is there any error in this?
__________________
<Javascript Smooth Scroller> | <Free Multi Transition Banner > Nothing builds self-esteem and self-confidence like accomplishment |
|
#2
|
|||
|
|||
|
Well where are you declaring $jsonData? I can't see that you are.
Also, note that you don't need quotations around object property names, so the following two syntaxes will work the same: Code:
var jsonData = {"data1" : "dataContent"};
var jsonData = {data1 : "dataContent"};
|
|
#3
|
||||
|
||||
|
Quote:
PHP's json_decode would fail without them, and how else would you store reserved name properties?
__________________
libs: mini (updated) ASPmini myIO (new) dnd tmpl8 apps: snippets blog photos crypto image editor crapplets: json browse json view compressor time grads |
|
#4
|
||||
|
||||
|
Quote:
How else would you store a property named constructor?
__________________
libs: mini (updated) ASPmini myIO (new) dnd tmpl8 apps: snippets blog photos crypto image editor crapplets: json browse json view compressor time grads |
|
#5
|
||||
|
||||
|
Yes,
I have quoted as follows.. Code:
var jsonData = {"data1" : "dataContent"};
before submitting I can test this in javascript like Code:
alert(jsonData.data1); in the server result like below PHP Code:
__________________
<Javascript Smooth Scroller> | <Free Multi Transition Banner > Nothing builds self-esteem and self-confidence like accomplishment |
|
#6
|
||||
|
||||
|
you're not running JSON.stringify() before you upload the javascript are you?
__________________
libs: mini (updated) ASPmini myIO (new) dnd tmpl8 apps: snippets blog photos crypto image editor crapplets: json browse json view compressor time grads |
|
#7
|
||||
|
||||
|
WWOW...
2 thumbs.. This is what i wanted. Thanks my friend. It worked for me.
__________________
<Javascript Smooth Scroller> | <Free Multi Transition Banner > Nothing builds self-esteem and self-confidence like accomplishment |
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|