Session ya da token kullandığımız da browser depoladığı için çok kolay aşılabiliyor. Define tek çözüm ama nasıl olacak ?

Yani şu şekilde yapmak istiyorum tam olarak...

index.php

<?php
define('veri',true);
include('veri.php');

echo "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' width='470' height='470' id='single1' name='single1'>
<param name='movie' value='http://www.longtailvideo.com/support/player.swf'>
<param name='allowfullscreen' value='true'>
<param name='allowscriptaccess' value='always'>
<param name='wmode' value='transparent'>
<param name='flashvars' value='veri.php?sayfa=xml'>
<embed
type='application/x-shockwave-flash'
id='single2'
name='single2'
src='http://www.longtailvideo.com/support/player.swf'
width='470'
height='470'
bgcolor='undefined'
allowscriptaccess='always'
allowfullscreen='true'
wmode='transparent'
flashvars='veri.php?sayfa=xml'
/>
</object>";
?>

veri.php

<?php
if(!defined('veri')) die ('Erişim Yasak!');

if($_REQUEST['sayfa'] == 'xml')
{
    header('Content-Type:application/xhtml+xml;');
    echo '<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/">
    <channel>
        <title>Example media RSS playlist for the JW Player</title>
        <link>http://www.longtailvideo.com</link>

        <item>
            <title>Big Buck Bunny - FLV Video</title>
            <link>http://www.bigbuckbunny.org/</link>

            <description>Big Buck Bunny is a short animated film by the Blender Institute, part of the Blender Foundation. Like the foundations previous film Elephants Dream, the film is made using free and open source software.</description>
            <media:credit role="author">the Peach Open Movie Project</media:credit>
            <media:content url="http://www.longtailvideo.com/jw/upload/bunny.flv" type="video/x-flv" duration="33" />
        </item>

        

    </channel>
</rss>
';
}

?>