Bu çalışmıyor neden birisi belki bana söyleyebilir misiniz?
Ben sonuçlar etrafında bir form oluşturmak için echo kullandık:
echo "[$key:]$value";
echo "[$key:]<br>";
Ben bunu zaman sayfa boş gösteren, yeni bir sayfa sonuç gönderebilirsiniz böylece bir textarea içine yakalamak için denemek için ....
<?php
/**
* Function to read meta information from the given domain.
*
* @param string $domain
*/
// Read META info
$tags = get_meta_tags('http://www.cheap-flight.co.za');
// Check the result and display it.
if (sizeof($tags) == 0){
echo '<div>No META information was found!</div>';
}
echo '<form name="form1" method="post" action="">'
echo '<textarea name="textarea" id="textarea" cols="45" rows="5">'
foreach ($tags as $key=>$value) {
echo "[$key:]$value";
echo "[$key:]<br>";
}
echo '</textarea></form>'
?>
İdeal bu gibi sahip olacaktır:
echo "<textarea name="textarea" id="textarea" cols="45" rows="5">[$key:]$value</textarea>";
ve kendi textarea içine her sonucu yer ...
Herhangi bir yardım mutluluk duyacağız