Jump to content

prehn

Newbies
  • Posts

    2
  • Joined

  • Last visited

Everything posted by prehn

  1. Here it is! require_once ('FileMaker.php'); $fm = new FileMaker(); $fm->setProperty('database', 'xxxxx'); $fm->setProperty('hostspec', 'xxxxx'); $fm->setProperty('username', 'xxxxx'); $fm->setProperty('password', 'xxxxx'); $find =& $fm->newFindCommand('www'); $find->addFindCriterion('Namn', "ståhl"); $result = $find->execute(); $records = $result->getRecords(); //var_dump($records); echo '<table>'; foreach ($records as $record) { echo '<tr><td>'. $record->getField('Namn'). '</td><td>'. $record->getField('Befattning/Yrke'). '</td></tr>'; } echo '</table>';
  2. *BUMP* Did you solved this problem? Having the exact same issue with my php-site when i try to search thru the records in my database.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.