Tagged Questions
0
votes
2answers
31 views
Most efficient way to store, pass, and parse simple array data in PHP
My PHP script is receiving data from an HTML input as an array:
<input type="checkbox" name="value[]" value="1" />
<input type="checkbox" name="value[]" value="2" />
<input ...
-5
votes
0answers
42 views
Guide me in entering a ASCII value from the terminal (windows xp operating system) [closed]
If a user wants to change the temperature value (say +250 or -250) over the desktop terminal. how will be the message structure for sending this over the serial interface (RS232) among any of the ...
0
votes
4answers
71 views
how to write the character value from structure into the serial interface and convert into integer value?
struct MemoryTag1;
typedef struct MemoryTag1{
char a[8]= {'+','0','2','6','.','5','EA','\r'}; // setpoint temperature value
char b[8]= {'-','0','2','4','.','5','EB','\r'};
char c[6]= ...
0
votes
1answer
63 views
Write serializable object from Array
I have a little problem with this thing. I tried to make an array where the user enters data, and the data needs to be saved in an object.obj file.
This is my code:
import java.util.*;
public ...
0
votes
1answer
28 views
rails 3 find a value in a params array
I am using jQuery UI Sortable to sort some rows on my website.
Here is my view:
<section class="data-list">
<article id="item_<%= item.id %>" class="data sortable">
...
0
votes
2answers
30 views
Store several text_field strings to array Rails 3
I'm trying to store some strings from a couple of text_fields that i have into an array, and then save it to the DB.
I have a column named "opening_hours" wich I've tried to separate into 2 different ...
0
votes
0answers
27 views
JavaScriptSerializer JArray deserilization
I am currently converting a JArray to string and using
var foo = serializer.Deserialize<Dictionary<string, Dictionary<string, string>>>(Sign.ToString());
Will it still work if I ...
0
votes
1answer
38 views
How to convert an object to a 2 dimension branched string array
I have a 2 dimension branched array. This I converted to an object and write it via a serializer to a file. (The conversion to an object cause of the serializer, u know)
Now I read this file and have ...
-1
votes
0answers
45 views
How to save a 2 dimensional array in an Access database [closed]
I have a 2 dimensional array of dimensions 400x400 of single type values. This is for vb.net, windows form. How can I save this as a field in an Access database record? What type of field would I use? ...
2
votes
4answers
52 views
unserialize Error at offset 5 of 9 bytes
I'm trying to pass an array trough a html-form input field.
Using serialize to pass it and then unserialize to read the array again. I have multiply input fields.
$test = array('name' => 'Sander', ...
0
votes
0answers
71 views
Jersey Jackson object serialization issue
I have a a web app that uses jerset/jackson to send/receive JSON objects from POJOs.
Here is the POJO.
@XmlRootElement
public class HeadersPoJo {
String status;
byte [][] header;
...
-2
votes
3answers
51 views
Fix corrupt serialized array [closed]
I have a problem with badly nested serialized array's looking like this
"a:2:{i:0;s:84:"a:2:{i:0;s:52:"a:2:{i:0;s:20:"a:1:{i:0;s:3:"230";}";i:1;s:3:"233";}";i:1;s:3:"233";}";i:1;s:3:"233";}"
Does ...
1
vote
1answer
95 views
PHP Unserialize and Accessing array
I have some complex data I want serialized.
When I tried to unserialize it, all I got was this:
bool(false) bool(false) bool(false) bool(false) bool(false) bool(false) bool(false) bool(false) ...
0
votes
2answers
33 views
Php unserialize string
When I do var_dump($string); I get
string(894) "[{"id":"11","value":"Gotowy do u\u017cytku"},{"id":"12","value":"Na 4 k\u00f3\u0142kach"},{"id":"13","value":"20 minut - rozgrzany do ...
0
votes
4answers
82 views
Unserialize cookie variable
Thank for viewing my question.
the code:
$array = array("zero","one","true","three");
echo $beforecookie = serialize($array); //<<-- IT WORKS;
print_r(unserialize($beforecookie)); ...
0
votes
1answer
92 views
Why deserializing does not convert a JSON string to struct or array in Coldfusion?
I'm trying to deserialize a JSON string in Coldfusion8. It seems to work (no errors), but I'm not able to work with the data I'm getting.
My JSON string looks like this:
...
0
votes
1answer
52 views
unseralize + php gives convert original value
Here is my string I want unserialize this string.
$string3 = ...
2
votes
1answer
41 views
Json to php, can't get the data i need
i need some help geting some data from JSON to php, i have tried a lot of options, but can't get the results i need, please can some one of you help.
The data can be fetched by a url.
Here is the ...
-5
votes
1answer
64 views
Unserialize array values [closed]
How to retrieve posts id from this array (i.e. 38781, 38753) ?
s:56:"a:1:{s:5:"ck_id";a:2:{i:0;s:5:"38781";i:1;s:5:"38753";}}";
Please help me
0
votes
1answer
84 views
MySQL - Perform JOIN from serialized array?
I am creating a simple cart script with PHP and MySQL, and I am having trouble figuring out the fastest and most efficient way to perform this query.
I have a table called carts and a table called ...
0
votes
0answers
93 views
Sending both form serialized data and an array of ID's through $.ajax()
I'm in trouble with sending information through $.ajax() POST.
I'm building an interface on which you can select pictures, and edit information for the selected pictures.
For the edit form, I need ...
0
votes
1answer
110 views
Serializing big int array
I'm serializing two int jagged arrays (int[4096][4096] x2). Most of their values are 0. But serialized file have 128MB of NUL values... Also, deserializing that big object takes a while. What is the ...
0
votes
2answers
66 views
Unable to append data to string using serializeArray() and array.push()
After following answers like this one, I'm trying to append data to a string using:
<input type='checkbox' name='a' />A
<input type='checkbox' name='b' checked='checked'/>B
<input ...
0
votes
1answer
121 views
pass json_encode array to java through network
I am working on a coursework where I am trying to pass an array from php 'client' to java 'server'. I create an array in php, encode it with json_encode and receive it on the server site with ...
-1
votes
2answers
29 views
PHP: combined and serialized arrays efficiency [closed]
The following code:
$user_items = unserialize($serialized_user_items);
// get the id
$item_id = arg(1);
if ($user_items == NULL) {
$array = $item_id;
} else {
$array = ...
0
votes
2answers
98 views
PHP Update Serialized Data
I need some help with unserializing and updating the array values and reserializing them (using php). Basically I want to be able to unserialize a string, update the value for a specific key (without ...
1
vote
1answer
74 views
using unserialized php array to parse image array
This is probably an easy question for some, but not for me unfortunately..
I am retrieving a serialized array from a MySql DB. That works fine. It unserializes fine.
I am then retrieving an array of ...
2
votes
1answer
175 views
Json.net serialize only part of array
could anybody tell me how to serialize and deserialize only part of array tools[] without Func delegate where:
public class Tool
{
public Tool()
{
lastUse = 1;
...
2
votes
1answer
117 views
Serialize array without root node in restkit
I would like to post the following information to the server with restkit:
[
{ "title": "cvxcv" },
{ "title": "sdfsdf" },
{ "title": "qsfqsdqsd" }
]
I have defined the two following classes:
...
0
votes
1answer
376 views
Issue with JSON.stringify adding a extra \ and “” to my Json object
Hi I am creating using Javascript an array of object with a key and a value using the following code.
ValuesArray.push({ key: $(this).attr('someattribute'), value: $(this).val() });
As a result I ...
0
votes
1answer
139 views
Converting a stringified json structure to PHP array
I'm saving a cookie with json data. Example of echo $_COOKIE['data']
...
0
votes
2answers
72 views
PHP Forum - Read/Unread Posts
After much pondering, I thought of a way to tackle this.
Posts Table:
post_id int, primary key, auto increment
post_content text
has_read text
In has_red would be a serialized array that looks ...
2
votes
2answers
223 views
jQuery remove item from serialized array
I'm trying to figure out how to remove item from serializedArray by using the index.
The following scenario:
[
{ 'name' : 'item1', 'value' : '1' },
{ 'name' : 'item2', 'value' : '2' },
...
0
votes
1answer
88 views
Mysql -> How many columns can i have in users table ? should i store arrays or not?
i want to create a database for my users in which i will need to store around 50 different peace of info for each user.
example
Contact info will hv (address,phone,email,home_phone,etc...)
personal ...
0
votes
1answer
172 views
RestKit Mapping and JSON serialization
I've got an issue with RestKit wrapping the serialization of my arrays with ( brackets instead of [ brackets.
Is there a way to customise/set the deliimter/wrapper character for a specific datatype?
...
2
votes
4answers
148 views
Serialize vs Implode
What do you think is the better way to go about storing a few image id's inside a record in a MySQL database? It's just the image id's which will be used to fetch the images from a different library.
...
4
votes
1answer
201 views
APC serialization slow?
Example:
$arr = array();
for($i = 5; $i < 300000; $i++)
$arr[$i] = 'foo';
apc_store('data', $arr);
It takes like 15 seconds. To get the data it takes around 0.7s.
But if I serialize the ...
1
vote
2answers
62 views
How to cast an array to string after using the jQuery map function?
I am using the .map function to convert elements to an array, and I'd like to then convert this array into a string:
javascript:
var selectedElements = $('.data').map(function() {
return ...
2
votes
1answer
310 views
Proper way to pass an array through post?
I have two pages:
Graph.php
List.php
The Graph page does exactly what it is named, graphs data. If there is no post/get data it displays all the data in a given table.
The List page is a huge ...
-1
votes
1answer
48 views
weird array output… How to distribute array into words and be able to print them out? [closed]
I have an array that looks like
["", "Fitness", "Stationary", "Looks", "Access", "Food",
"---\n- Stationary\n- Access\n- ''\n"] ["", "Fitness",
"Stationary", "Looks", "Access", "Food", "---\n- ...
0
votes
1answer
229 views
Jquery Put serialize data into array
I want to get all the data from my form and put it into an accessible array. Here's what I have so far:
var data = $("#everything").serializeArray();
var test = [];
$(data).each(function(index, ...
1
vote
1answer
90 views
JQuery Validate Plugin
I'm trying to use the validate plugin but I guess it's not setup correctly. This is my header:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script ...
1
vote
3answers
979 views
Convert Bytes to Int / uint in C
I have a unsigned char array[248]; filled with bytes. Like 2F AF FF 00 EB AB CD EF .....
This Array is my Byte Stream which I store my Data from the UART (RS232) as a Buffer.
Now I want to convert ...
-1
votes
2answers
65 views
Get array variables
I got serialize($result->response) string that is saving to file, but I need variables from it, how can I access them?
I tried f.ex:
$result->response['StatusCode']
...
0
votes
2answers
62 views
Reconstruct / Build new array based on array items
I have an array composed of varied sub array like:
[{'x':'xvalue', 'y':'yvalue', 'group':'groupname'}...{'x':'xnvalue', 'y':'ynvalue', 'group':groupnname'}]
I want to create a new array or ...
0
votes
1answer
727 views
PHP json_encode not working with array of objects
I am developing php application in which i am querying database and the generated result I am sending back to html client.
Currently I am getting array of objects which I am encoding in JSON using ...
0
votes
3answers
604 views
Convert a C# jagged array to an array and back again
I currently have a jagged array Class[][][] which I want to serialise as a normal Class[] array, then convert back into a Class[][][] array after deserialization. Is it at all possible to convert ...
0
votes
2answers
250 views
Fastest way to store table of data and retrieve
I am storing some history information on my website for future retrieval of the users. So when they visit certain pages it will record the page that they visited, the time, and then store it under ...
0
votes
0answers
237 views
POst array and update mysql table with unique id for each update?
I have this in firebug:
s:17:"id=12&id=15&id=16";s:19:"qty=15&qty=5&qty=12";s:43:"note=note+one¬e=note+two¬e=note+three";
I have the above as aresult from this:
itemid: ...
4
votes
3answers
285 views
How do I serialize an array of array-references in Perl?
There are so many modules for serializing data for Perl, and I don't know which one to choose.
I've the following data that I need to serialize as a string so I can put it in the database:
my ...


