Benimki içine başka bir siteden bir swf görüntülemek çalışıyorum.
Ben sadece sorunları tüm sergiyi yaşıyorum bunu diğer taraftan izin var.
Ben sadece swf değil, swf üzerinde olduğunu tüm sayfa görüntülemek istiyorum.
Bu denedim - ama sadece içeriği ile iş gibi görünüyor ve ben swf görünmesini alıyorum herhangi bir şans olmadı.
<?php $conts = file_get_contents('http://www.test.com/');
$pattern = '~<div.*id="content".*>(.*)</div>~iUs';
preg_match($pattern, $conts, $matches);
array_shift($matches);
echo $matches[0]; ?>
How can a go about doing this. Thanks!