Yılbaşı kart gönderme sitesi yapmaya çalışıyorum, flash ve xml çalışıyor, data.xml den çekiyor bilgileri, ben bunu htaccess ile bir php dosyasına ayarladım, kullanıcı form doldurarak veri tabanına yazdırıp bilgileri flash ile göstermek istiyorum, ama sanırım mümkün değil gibi, yani bendeki flash dosyasıyla mümkün olmacağını düşünüyorum,kendi mantığımla bunun çalışması için flash dosyasını data.php sayfasında göstermem gerekiyor diye düşünüyorum, o zamanda xml kodları gözükecek, nasıl yapmalıyım bilmiyorum.

index dosyam
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
	<head>
		<title>Nice Senelere</title>
		<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
		<script type="text/javascript" src="swfobject.js"></script>
		<script type="text/javascript">
		swfobject.embedSWF("main.swf", "myContent", "800", "500", "9.0.0", "expressInstall.swf");
		</script>
	</head>
	<body style="background: #540308; padding: 0; margin: 0; text-align: center">
		<div id="myContent">
			<h1>Nice Senelere</h1>
			
		</div>
	</body>
</html>

data.php

<?php
echo "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n";
echo "\n";
echo "\n";
echo "<items >\n";
echo "\n";
echo "<item name=\"Item text1\">\n";
echo "	<description><![CDATA[Sevdiklerinle <font size=\"36\">&</font> <br> Nice Mutlu Senelere!]]></description>\n";
echo "</item>\n";
echo "<item name=\"Item text2\">\n";
echo "	<description><![CDATA[<i>         <font color=\"#fff36d\">Adi Soyad</font><br>Mutlu ve Saglikli Senelere!</i>]]></description>\n";
echo "</item>\n";
echo "<item name=\"Item text3\">\n";
echo "	<description><![CDATA[<i>Tum haklari saklidir.Tasarim<a href=\"http://www.facebook.com\"><font color=\"#fffeec\">isim soyisim</font></a></i>]]></description>\n";
echo "</item>\n";
echo "</items>";


?>


--R10.NET; Flood Engellendi -->-> Yeni yazılan mesaj 15:28:43 -->-> Daha önceki mesaj 15:20:04 --

data.php içine flash'ı ekleyince tabiki doğal olarak bu şekilde çıkıyor.