私が必要としているのは、これを取り込む方法です:184.173.18.228/api/profile/1000/0/Adam.Adams(xmlファイル)をphp(私は仮定)に入れてJoomlaで使用します(Sourcererを使用できますJoomlaのコード)-私が遭遇した問題は、クロスドメインプロキシの問題があることです-先週末、ajax / jqueryを使用して自分のマシンにローカルにあるときにそのxmlをレンダリングすることができました:
// jQuery script
$(function() {
// Load data from proxy.php using GET request
$.get('test.xml', function(data)
{
// Search for the XML element you want, perform an action on each occurrence of found element
$(data).find("XMLElement").each(function()
{
$('#output').append($(this).attr('XMLAttribute')); // Display desired attribute of element -OR-
$('#output').append($(this).children("Phone").text());
私が正しく質問をしているのかどうかさえわかりません-私がしたいのは、ページにhtmlをエコー/入力するためにそのxml/urlを取り込むphpスクリプトです。私は何百万ものことを試しましたが、それを得ることができません