A Flash Developer Resource Site














Internet Commerce

Partners & Affiliates














Developer Channel

internet.com


Featured Flash FLA
Gallery Downloads 11303 Flash Movies | 7 New Flash Movies Added
What's New | Top 100

Featured FLA

» Author: Nitin Tikhe
» Title: Cart
» Description: This Animation Tut is a fun and useful for kids below 15 years. Watch the Flag, Doors, Stick and Horse movements.
» More by Nitin Tikhe


Random FLAs | Add Flash Movie
Featured Flash Site
Gallery Downloads 6008 Flash Sites | 0 New Flash Links
What's New | Top 100 Flash Site

Featured Site

» Posted in the Flash Kit Links section
» Title: Banana Swimwear
» Description: This is a banana swim wear interactive catalog we designed and animated in Flash


Random Links | Add your own Flash Related Links
Flash Tutorials 1255 Tutorials 7 New Tutorials Added!
What's New | Top100

» Make flash video player for broadcasting live streaming video / TV on website
» How to convert the project file of Flash Demo Builder 2.0 into FLV file
» FLV to PSP for Mac - How to convert YouTube video to PSP on mac
» How to Convert FLV to MP4 for Playback on iPod
» how to download and convert youtube video to AVI with Leawo Free FLV converter
» Flash Multi-player Game Tutorial - TicTacToe
» How to make Flash elearning tutorials with screen recorder?
» Fader API:Slideshow with MovieClips on stage
» How to convert MS PPT file into an FLV File
» Unknown Tag: Title10
Random Tutorial | Add Site

Network Design Manager
The Computer Merchant, Ltd
US-VA-Hampton

Justtechjobs.com Post A Job | Post A Resume


Tutorials Home What's New Top Rated Submit myTutes Random!

Search Tutorials


Tutorials Tutorials » Dynamic_Content

Categories Simple PHP Live Counter For your Flash Movie
Author: Jeffrey F. Hill | Website: http://www.snowvids.com |

 
Page 4
«prev 1 2 3 4 5 next»

Part II - Setting up the PHP Script

For this part you can use the attached script by just adding it to the same directory as the PHPCounter.swf.  Not much else has to be done.  I'm going to go over the script in Detail however in the hopes that you'll have a better understanding of how it works and so that you can create your own modifications in the Future.  (For example purposes Line numbers where used here for the example - do not use line numbers in the actual script. 

1) <?
2)  $filename = "PHPCounter.txt";
3)  $fp = fopen( $filename,"r");
4)  $Old = fread($fp, 100);
5)  fclose( $fp );
6)  $Old = split ("=", $Old, 5);
7)  $NewCount = $Old[1] + '1';
8)  $New = "Count=$NewCount";
9)  $fp = fopen( $filename,"w+");
10)  if (flock($fp, 2)) {
11)  fwrite($fp, $New, 100);}
12)  fclose( $fp );
13)  print "Count=$NewCount";
14)  ?>

Line 1 - Tells the server to start processing this script as a PHP script. 

Line 2 - Sets the variable filename to the name of the text file that we are going to be using to store the number of visits or Counts.  Remember in PHP whenever you see a $ that indicates a scaler variable.

Line 3 - Opens the text file for reading.  

Line 4 - This line basically places the content of the text file into the variable Old.  

Line 5 - Closes the text file.

Line 6 - This line splits the text file where ever an = sign occurs and puts the two parts into an array that can be referenced as follows:  $Old[0] references the Count part of the string, $Old[1] references the Number part of the string.  This is important because we only want to read and add to the number and not the whole string (Count=Number). 

Line 7 - Adds 1 to the current Count. 

Line 8 - Creates a new string that can be placed into the text file. We need to add the 'Count=' part again because we got rid of it when we split the string into the array.

Line 9 - Opens the file for writing to.

Line 10 - An optional argument that locks the file (file locking) so that we do not write over the same file at the same time - this can cause the Count to reset and may cause other errors.  This is mostly important if you think a large number of people will be visiting your site at any one moment. 

Line 11 - This writes over the current text file with the New value - the count is increased by one.

Line 12 - Closes the text file for writing to.

Line 13 - Prints out Count=(The new Count) which is returned to the Flash movie - the value of Count then appears in the dynamic text box named Count in the Flash movie. 

Line 14 - Ends the PHP script.

That's it for the script.  The last and probably most important thing that your going to have to do is change the permissions of the Text file that your using - in this case: PHPCounter.txt - To 777 you can do this with Telnet by using the command: chmod 777 PHPCounter.txt in the directory in which it resides.  You can also do this with some ftp programs such as ws_ftp. 

«prev 1 2 3 4 5 next»

» Level Intermediate

Added: : 2001-08-23
Rating: 7.94 Votes: 131
Hits: 5580
» Author
No details available.
» Download
Download the files used in this tutorial.
Download (54 kb)
Get conversion and unzipping tools for PC and Mac here!

» Forums
More help? Search our boards for quick answers!

Please rate this tutorial, 10 is the top rating, you can also click the comments link to read/write a review.
10 9 8 7 6 5 4 3 2 1
Read or Post Comments