Archive of 2010 March

25Mar2010
Author
Dave
Category
Flash
Tags
, , , ,
Sending dynamic data to server and back in flash Thumbnail

Sending dynamic data to server and back in flash

This tutorial shows you how to send data from flash to php then change the data and send back to flash using LoadVars.

Read MoreLeave a Comment
13Mar2010
Author
Dave
Category
PHP
Tags
, , ,
Create an RSS feed with PHP Thumbnail

Create an RSS feed with PHP

This tutorial will explain how to create an RSS feed, That is easy to setup but also validates as a valid feed.

Read MoreLeave a Comment
12Mar2010
Create a simple FTP class Thumbnail

Create a simple FTP class

FTP is well known to all designers/developers to moves files from a local computer to a remote web server, What if you want to copy a file from one server to another? the recommended choice would be to use SSH or telnet but if you don't have access to these then you would download the files via FTP and then upload them to the new location. there may be times where you just want to copy a single file to another server connection via FTP and download then uploading seems a little tedious, a better way is to copy the file directly from the current server to the new server. To do this I'm going to create a simple OOP FTP class that will do the heavy lifting for me and let me repeat the process as many times as required.

Read MoreLeave a Comment