Serialize this - Saving Objects in PHP

Written by Kevin Davies


Continued from page 1

You'll see that I usedrepparttar addSlashes() function. That's because whenrepparttar 105975 crossword object was serialized it contained characters like double quotes. These had to be escaped beforerepparttar 105976 crossword could be saved torepparttar 105977 database.

Now having saved a crossword object to a database I had to have a way to get it back. Surely, if there was a method to serialize an object there had to be one to unserialize an object, right? And yes, there is: unserialize().

As you'd expect, unserialize() worksrepparttar 105978 same way as serialize(), but inrepparttar 105979 opposite direction. You give it some serialized data and it returnsrepparttar 105980 thing that was serialized. To getrepparttar 105981 crossword back all I had to do was something like "unserialize($crosswordData)."

Here's a look atrepparttar 105982 code:

$xwordId = (get_magic_quotes_gpc()) ? $xwordId : addslashes($xwordId); $sql = "SELECT xword_id, xword_obj, xword_name, xword_age from w3b_xword where xword_id=$xwordId"; $result = parent::getSQL($sql); $row = parent::getRow($result);

if(parent::getNumRows($result)>0){ $crossword = unserialize($row['xword_obj']); }

And that's it. Obviously serialize() and unserialize() are pretty handy functions to have around. And in my case I couldn't do without them.

Kevin Davies is the webmaster of Crossword Heaven (http://www.crosswordheaven.com) - a site that lets you create and solve crosswords online. If you're a webmaster you can also link to crosswords. Crosswords are a great way to keep your visitors on your site and keep them returning.


Got Traffic?

Written by Kevin Davies


Continued from page 1

Another example is a "recommend this site" service. That is you have a page on your site that people can use to recommend a website. People get torepparttar page through a link onrepparttar 105974 website that they want to recommend.

Or how about a service that let's people "brand" images with some text?

Affiliate links

I like to think of affiliate links as "paid for" links. Basically you're paying someone to link to your site. Do they work? Yes! You win because you only payrepparttar 105975 affiliate when a sale is made (ok, there are exceptions) andrepparttar 105976 affiliate wins because they get paid.

eBooks

People love eBooks. Create an eBook with links to your site in it. The more popularrepparttar 105977 eBook isrepparttar 105978 more links back to your site you will get. Plus eBooks go hand in hand with affiliate programs.

Of course there are many more ideas than these. The thing is to think about ways of getting people linking to your site. It doesn't matter how crazyrepparttar 105979 idea sounds. In fact sometimes crazy is good. Remember all those times someone sent you a link to a wacky web site? Just think about how much traffic that website must get!

Kevin Davies is the webmaster of Crossword Heaven (http://www.crosswordheaven.com) - a site that lets you create and solve crosswords online. If you're a webmaster you can also link to crosswords. Crosswords are a great way to keep your visitors on your site and keep them returning.


    <Back to Page 1
 
ImproveHomeLife.com © 2005
Terms of Use