PHP Javascript geçmek

0 Cevap php

Ben bu özel sorunun yöneltildiği birini bulamadı yana, ben burada küçük bir sorun var, ve hiçbir öğreticiler yardım olmuştur.

Ben 2 hosting hesapları, PHP destekleyen bir sunucu üzerinde bir tane var. Ve PHP desteklemeyen farklı bir sunucuda diğer.

SERVER A = PHP Support, and SERVER B = NO PHP Support.

Sunucu a ben rasgele bir görüntü oluşturur bir php komut dosyası var. Ve sunucu b i On sunucuda bir o php işlevi çağıran bir javascript içeren bir html dosyası var. Ama ne olursa olsun ben bunu nasıl, asla çalışır.

Ben php komut sonucu almak için aşağıdaki kodu var:

<script language="javascript" src="http://www.mysite.com/folder/file.php"></script>

Ben muhtemelen bir şey eksik biliyorum, ama ben haftadır arıyorum! Ama bu nasıl yapılır açıklayabilir herhangi bir bilgi bulamadım. Lütfen yardım edin!

Thank you :)

UPDATE

PHP script:

$theimgs= array ("images/logo.png", "images/logo.png", "images/logo.png", "images/logo.png", "images/logo.png");

function doitnow ( $imgs) {
    $total = count($imgs);
    $call = rand(0,$total-2);
    return $imgs[$call];
}

echo '<a href="index.php" alt="something"><img src="'.doitnow($theimgs).'" alt="something" /></a>';

0 Cevap