Jump to content

[SOLVED] Help with unerialize


izbryte

Recommended Posts

I have a form with a bunch of checkboxes and I use the serialize function when I insert them into the database. I'm now trying to use unserialize to display them and it's not working and I'm ready to pull my hair out!!!!!

If I enter

echo "Certifications:". ($row['certifications']."

I get

Certifications: a:4:{

 

but if I try this...

echo <b>Certifications: </b>";
	   $certifications=unserialize($row['certifications']);

		  foreach($certifications as $fs)
		   {
			  print $fs.' ';
		   }

I get this error:

Warning: Invalid argument supplied for foreach() in blah blah

 

Can anyone help me ????

Link to comment
Share on other sites

Certifications: a:4:{

 

Is that all printing the row gives you?  That's not a valid serialized piece of data.  If that's the case then your problem lies in the code that inserts it into the database.

 

Yep! There lied my problem! I had the character length set to small. Oops! Thanks for your help!

 

 

I always seem to have these same kind of problems so I pretty much stick to using implode() & explode() for this kind of task especially since these are only strings.

 

Thanks for the idea! It seems MUCH easier! :)

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.