Html çapraz site almak görüntülemek ve bir öğe değeri olsun

0 Cevap php

Ben bir aspx sitesinden tamamlandı çıkışını almak gerekiyor. Kullanıcı ayrıldığında ben kurabiye bazı özel elemanları ne kazandıracak. Sorun aspx ben erişimi olmayan bir etki üzerinde olmasıdır. Ben bağlantılar tıklanabilir olması gerekir bu yüzden çıktı bir iframe gibi davranmasını istiyorum ama benim sayfa bırakmayacak.

I think of either AJAX with PHP-proxy or an iframe that I can modify content in. Is this possible? If it is possible and it involves server-side code I would like to know if there are any free web hosts that support the full code( for example almost every free web host has safe_mode on for PHP).

EDIT: Ben bu sayfayı görüntülemek istiyorsanız: School scheme. URL (JavaScript aracılığıyla düşünüyorum) sadece sunucuya istekler gönderir, değiştirmek için değil. Kullanıcı ayrıldığında ben select box id = "TypeDropDownList" in neler olduğunu görmek ve seçim kutusu id = "ScheduleIDDropDownList" in ne olduğunu.

Kullanıcı benim sayfasına döndüğünde böyle URL yoluyla sayfasında bu değerleri yazdıracak "http://www.novasoftware.se/webviewer/(S(lv1isca2txx1bu45c3kvic45))/design1.aspx?schoolid=27500&code=82820&type=" + type + "&id=" + id + "

I tried several php proxy scripts on 000webhost before I posted here. for example this :

<?php
ob_start();

function logf($message) {
  $fd = fopen('proxy.log', "a");
  fwrite($fd, $message . "\n");
  fclose($fd);
}

?>
<?
$url = $_REQUEST['url'];
logf($url);
$curl_handle = curl_init($url);
curl_setopt($curl_handle, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl_handle, CURLOPT_USERAGENT, "Owen's AJAX Proxy");

$content = curl_exec($curl_handle);
$content_type = curl_getinfo($curl_handle, CURLINFO_CONTENT_TYPE);
curl_close($curl_handle);
header("Content-Type: $content_type");
echo $content;
ob_flush();
?>

Ama Uyarı döndürür: curl_setopt (): Verilen argüman hattı 16 / home/a5379897/public_html/ajax-proxy.php geçerli bir cURL tanıtıcısı kaynak değil

Onlar cURL etkin söylüyorlar ama onlar henüz vermiş değil, çünkü ben bu konuda onlara ulaşmaya çalıştık.

I think it would be possible to just display the two select boxes when the user first visit the page. When options is selected it will make an iframe show the right page by passing "http://www.novasoftware.se/webviewer/(S(lv1isca2txx1bu45c3kvic45))/design1.aspx?schoolid=27500&code=82820&type=" + type + "&id=" + id + " to the src attribute. The problem with that is that I will need to retrieve the select boxes someway and I will have the same problem.

0 Cevap