Olmayan destekleyici sunucu üzerinde PHP Kullanımı

0 Cevap php

Ben gerçekten önce uğraşmak zorunda asla oldukça karmaşık bir senaryo var. PHP desteği olmadan bir web sunucusu üzerinde barındırılan bir web sitesi oluşturma. Ama bir Flash Slayt döndüren bir PHP komut dosyası aramak gerekir. Bunu herhangi bir yolu var mı? İşte Flash Slayt dönmek aramak gerekir PHP kod parçasıdır.

<?php

//include slideshow.php to access the Insert_Slideshow function
include "http://mywebsite/slideshow.php";

//insert the slideshow.swf flash file into the web page
//tell slideshow.swf to get the slideshow's data from sample.php created in the first step
//set the slideshow's width to 320 pixels and the height to 240
echo Insert_Slideshow ( "http://mywebsite/slideshow.swf", "http://mywebsite/sample.php", 600, 500 );

?>

0 Cevap