我有第一个名为index.php的php页面和另一个名为act.php的文件在localhost(www文件夹)中的同一个文件夹中,当我在表单操作中使用时这个url:localhost / project / act.php工作正常:) &安培;这条消息出现:l'authentification a ete passe avec success,但当我使用相对位置act.php不起作用,我看到整个页面代码:
sesameSparqlEndpoint = 'http://my.ip.ad.here:8080/openrdf-sesame/repositories/rep_name'
sparql = SPARQLWrapper(sesameSparqlEndpoint)
queryStringDownload = 'CONSTRUCT {?s ?p ?o} WHERE {?s ?p ?o FILTER REGEX(str(?s), "http")}'
dataGraph = Graph()
sparql.setQuery(queryStringDownload)
sparql.method = 'GET'
sparql.setReturnFormat(JSON)
output = sparql.query().convert()
# print output
#Print all statements in dataGraph
for stmt in output:
print stmt
任何帮助都非常感谢,谢谢。
<?php
echo "l'authentification a ete passe avec succes";
?>
答案 0 :(得分:0)
您的摘要应该有效。你不应该看到PHP代码 - 很可能你没有配置php处理程序。