PHP 8.5.0 Beta 1 available for testing

Voting

: eight minus five?
(Example: nine)

The Note You're Voting On

tedknightusa at hotmail dot com
22 years ago
A Notes example:

<?php
$session
= new COM "Lotus.NotesSession" );
$session->Initialize($password);

$someDB = "C:\Lotus\Notes\Data\somedb.nsf";
$db = $session->GetDatabase("", $someDB) or die("Cannot get someDB.nsf");
$view = $db->GetView("some_view") or die("Some View not found");

$doc = $view->GetFirstDocument() or die("Unable to get Initial Some Document");

// loop through
while($doc){
$col_vals = $doc->ColumnValues();
echo
$col_vals[0];
$doc = $view->GetNextDocument($doc);
}
?>

<< Back to user notes page

To Top