My problem is very basic.
I did not find any example to meet my needs as to what exactly serialize() and unserialize() mean in php? They ju
serialize()
unserialize()
Run this program its echo the output
a:3:{i:0;s:1:"1";i:1;s:1:"2";i:2;s:1:"3";}
you can use serialize to store array of data in database and can retrieve and UN-serialize data to use.