FileMaker API PHPを使用して、phpでFileMakerデータを取得します。だから、それは非常にうまく機能します。簡略化したいと思います。
/** This code is correct and can't modify ***/
require_once ('inc/FM/FileMaker.php');
require_once ('inc/FM/param_FM.php');
$modele="Mura";
$id_folder=$_GET["folder"];
$id_ouvrage=$_GET["id"];
$findCommand =& $base->newFindCommand($modele);
$findCommand ->addFindCriterion('ID OUVRAGE', $id_ouvrage);
$result = $findCommand->execute();
if (!FileMaker::isError($result)) {
$records = $result->getRecords();
}
else{
echo "No result";
}
/*** END unmodify code ***/
いくつかのデータを表示したいときは、これを使用します:
$Collection = $records[0]->getField('Collection book');
$title = $records[0]->getField('Title book');
$years = $records[0]->getField('Years book');
しかし、私はすべてのデータを配列に入れています。
$data= array('Collection' => 'Collection book','Title' => 'Title book', 'years' => 'Years book');
私はこのような48のデータを持っています。この配列を使用してすべてのデータを単純化できますか?ご協力いただきありがとうございます。