开发者

From javascript array to mysql

Im making a 100% javascript and canvas web application, no forms at all. I have a js array with data and I'm wondering how could be 开发者_开发问答possible to pass it to a php script so it gets loaded into the database. Suggestions?


My thoughts are to keep it simple. If you are looking to store arrays based on value/pair, ie a flat file and no relationships between tables, then I would do the following:

Create a mysql database with one table, two rows:

CREATE TABLE `data` (
    `data_id` INT(10) NULL,
    `data_key` CHAR(50) NULL,
    `data_value` TEXT NULL,
    `datemodified` TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
    `datecreated` DATETIME NULL,
    PRIMARY KEY (`data_id`),
    UNIQUE INDEX `data_key` (`data_key`)
)
COLLATE='latin1_swedish_ci'
ENGINE=MyISAM
ROW_FORMAT=DEFAULT

Anyway create a PHP script that will take a post of 2 variables, a key (a key), and value (this would be an object in javascript).

If you post a key, it should return the value (in the json format so javascript can interpret it into an object)

If you post a key and a value, the script will do an "Insert Ignore" and return the data_id. Run the value through json_encode() (as it will be if posted through javascript) and store it under the key.

You could also make an optional third way of accessing the data using the data_id value.

Just a thought... let us know how much php experience you have and if you need specific details on what functions to use

Security would also be a factor to consider. In this case, you might want to have javascript generate a unique session id, and then add this session_id to the table. So users can only access their own data. Not really sure how your app works at this stage though so sorry I can't suggest something more secure.


create a webservice in php that can connect to mysql db. Your js code would make calls to these webservices to save to db


You can send it as a JSON string to a PHP file using AJAX and then decode the JSON, inserting the data into the database. You should have the PHP file return something to make sure it's done.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜