SHMUEL Posted April 14, 2015 Posted April 14, 2015 (edited) 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, 2015 by SHMUEL formatting
Recommended Posts
This topic is 3805 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now