ne znam kolik oje ova tema zastarela ali ja sam skinuo sa ovog linka skrpitu ali mi je mal onejasno kako sve to ide, moze li mala pomoc, koji deo od ovoga ide u flash kao skriptica???
text_poll.php
Code:
<?
// ---------------------
// prevent browser cache
// ---------------------
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
?>
<?
// ---------------
// define options
// ---------------
$file_data = 'text_poll.txt'; // text file name (CHMOD 777);
$cookie_duration = 3600; // how long cookie remains (3600 = 1 hour)
$cookie_title='text_poll_1';
?>
<?
function readData()
{
...
// this is the function
// which reads the txt file
// and send the output to flash
}
function saveData($num)
{
...
// this function saves
// data to the txt file
}
// -----------------
// Decisional switch
// -----------------
switch($_GET['action'])
{
case 'saveData':
saveData($_GET['num']);
break;
default:
readData();
break;
}
?>
text_poll
Code:
title=Which team will win the World Championship in Corea/Japan ?
choice1=Brazil
choice2=France
choice3=England
choice4=Italy
choice5=Argentina
choice6=Spain
choice7=Portugal
choice8=Denmark
choice9=Germany
votes1=4
votes2=1
votes3=4
votes4=2
votes5=1
votes6=1
votes7=0
votes8=1
votes9=1