配列を .php ファイルから .html ファイルに渡すには?
<?php
$arr= array(
"first_name" => "Darian",
"last_name" => "Brown",
"age" => "28",
"email" => "darianbr@example.com"
);
?>
.html ファイルがあり、.php ファイルから .html ファイルに結果を送信して、さらに使用したいと考えています。