Walkere has submitted 9 links
Digg API: How to Get a Random from Digg with PHP and XML
in PHP added by Walkere, on 26/2/2008 advanced tutorials media php5 xml
This tutorial walks you through using the Digg API to fetch a random story from Digg and display it on your own site. Good introduction to using the Digg API for content syndication. Uses PHP 5 and XML.
comment save reportHow to Create an RSS Feed for Your Site in PHP
in PHP added by Walkere, on 1/3/2008 advanced tutorials feed file handling mysql php5 xml
An RSS feed is a great way to serve up your content to users. However, if you're not using a standard CMS or blogging platform you may not have an RSS feed generated for you automatically. This tutorial will show you how to create an RSS feed in a few simple steps. If you can query your database to get information about your articles, you can complete this tutorial and build a custom feed.
comment save reportHow to Syndicate an RSS Feed On Your Site
in PHP added by Walkere, on 11/2/2008 advanced tutorials feed php5 rss xml
This quick tutorial shows you how to use Simple XML to read and manipulate an RSS feed. The end result is a few lines of code that you can use to syndicate a site's feed on your own page - adding links to relevant content for your users.
comment save reportHow to Find a Random Date in PHP
in PHP added by Walkere, on 7/2/2008 beginner tutorials date php php5
This quick tutorial walks you through how to use a few simple functions - strtotime(), date(), and rand() - to find a random date with PHP. The end result is a simple one line command that you can place in a function and integrate into your own scripts.
comment save reportHow to Use PHP To Dynamically Resize an Image
in PHP added by Walkere, on 6/2/2008 advanced tutorials image php5
Sometimes you want to display an image - but it's not stored in the right size. If you allow the browser to resize the image, it will get distorted and waste bandwidth. Instead, you can use the PHP GD library to resize the image on the fly. This tutorial will show you how to use the GD library to read an image, resize it, and output it as part of an HTML page.
comment save reportHow to Continue to Pass Form Elements to Create a Mult-Page Form
in PHP added by Walkere, on 29/1/2008 beginner tutorials forms php
Sometimes forms get long, unsightly, and intimidating. It’d be great if you could cut them up into three or four parts - with a few fields on each page. In order to do that, you need to figure out some way of storing or passing along the information from the first pages. This tutorial will show you how to create a simple php function that will do this for you.
comment save reportHow to Use PHP's Crypt() Function to Encrypt and Check a Password
in PHP added by Walkere, on 28/1/2008 beginner tutorials encryption passwords php5 security
This tutorial will walk you through using PHP's crypt() function to effectively encrypt a password for storage in a database and later check that password against a user's input.
comment save report