test.php
名前のリストがあるページがあります。
name1: 992345
name2: 332345
name3: 558645
name4: 434544
別のページtest1.php?id=name2
では、結果は次のようになります。
332345
私はこのPHPコードを試しました:
<?php
libxml_use_internal_errors(true);
$doc = new DOMDocument();
$doc->loadHTMLFile("/test.php");
$xpath = new DOMXpath($doc);
$elements = $xpath->query("//*@".$_GET["id"]."");
if (!is_null($elements)) {
foreach ($elements as $element) {
$nodes = $element->childNodes;
foreach ($nodes as $node) {
echo $node->nodeValue. "\n";
}
}
}
?>
GET PHP メソッドで名前を変更できるようにする必要がありますtest1.pdp?id=name4
結果は今とは異なるはずです。
434544
私の方法がうまくいかないので、別の方法はありますか?