Ben PHP sistem işlevi ile garip bir davranış var. Bu php komut sadece 2 talimatlar (saf html olmak dinlenme) vardır:
<?php echo system('cgi-bin/gallery2/galleryheaderview.cgi'); ?>
<?php echo system('cgi-bin/gallery2/galleryview.cgi'); ?>
The first cgi just returns a single line as you can check here http://reboltutorial.com/cgi-bin/gallery2/galleryheaderview.cgi
Bu döner
Benim Galeri
But the whole php script returns Benim Galeri Twice:
Benim Galeri Benim Galeri
http://reboltutorial.com/gallery2.php
Is there a reason (I don't use Benim Galeri in second cgi script of course see http://reboltutorial.com/cgi-bin/gallery2/galleryview.cgi) and how to prevent this ?
Teşekkürler.