Exemple #1
0
    public function UpdateRecipe($_criteria, $_newData) {

        $dbl = new DBLayer();
        $dbl->setCollectionObj($this->Colname);
        $this->objID = $dbl->UpdateCollection($this->Colname, $_criteria, $_newData);
        $cursor = $dbl->get_CollectionObjectbyid($this->Colname, $this->objID);
        foreach ($cursor as $arr) {
            $this->instructions->value = $arr['instructions'];
            $this->ingredients->value = $arr['ingredients'];
        }
        echo "<b>Instructions</b> : " . $this->printinstructionsHtmlTag() . '<br>';
        echo "<b>Ingredients</b> : " . $this->printingredientsHtmlTag() . '<br>';
    }
Exemple #2
0
public function UpdateCreativeWork($_criteria, $_newData)
{

$dbl=new DBLayer();
$dbl->setCollectionObj($this->Colname);
$this->objID=$dbl->UpdateCollection($this->Colname, $_criteria, $_newData);
$cursor = $dbl->get_CollectionObjectbyid($this->Colname,$this->objID);
foreach ($cursor as $arr)
{
$this->about->value = $arr['about'];
$this->author->value = $arr['author'];
}

echo "<b>about</b> : " . $this->printaboutHtmlTag().'<br>';
echo "<b>Author</b> : ". $this->printauthorHtmlTag().'<br>';
}