Jump to content

How to seperate data serialized and input into MySQL


callingrohit

Recommended Posts

Hi everyone,

I have a form with checkbox input and the data is stored into a MYSQL table.

So I serialize this checkbox data before inserting it into the database. Now I also export the data with a

click of a button into a spreadsheet.

The data in the mysql table looks like this [b]a:3:{i:0;s:3:"uno";i:1;s:3:"dos";i:2;s:4:"tres";}[/b]

I was wondering if its possible to modify  the above data to just [b]uno,dos,tres[/b] and then insert it into my excel table.

Thanks

cheers
rohit
Link to comment
Share on other sites

Not very pretty but...

[code]
#!/usr/bin/php
<?php

    $line = 'a:3:{i:0;s:3:"uno";i:1;s:3:"dos";i:2;s:4:"tres";}';
    $arr = explode('"',$line);
    $newstring = $arr[1].','.$arr[3].','.$arr[5];
    echo $newstring;

?>
[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.