April 14, 201510 yr Hello, I have a problem I shall post a page index.php My I can not create or delete contacts I visualized, or search for a contact in my database it appears right Pourais someone watching or I wrong in my code thank you ------------------------------------------ <?php $addCommand = $fm->newAddCommand("web_contacts", $donnees); $result = $addCommand->execute(); if ( FileMaker::isError($result) ) { $erreur_ajout = "Erreur : " . $result->getMessage(); } } if( isset($_GET["action"]) && $_GET["action"] == "supprimer" ) { $deleteCommand = $fm->newDeleteCommand("web_contacts", $_GET['recid']); $result = $deleteCommand->execute(); if ( FileMaker::isError($result) ) { $erreur_suppr = "Erreur : " . $result->getMessage(); } } ?> Edited April 14, 201510 yr by SHMUEL formatting
Create an account or sign in to comment