bool CLAnswer::Delete( int ID );
The Delete method removes an answer identified by the ID.
| Parameter | Description |
|---|---|
| ID | The answer ID. |
The method returns true on success, or false otherwise.
<?
if (CModule::IncludeModule("learning"))
{
$COURSE_ID = 97;
$ANSWER_ID = 1553;
if (CCourse::GetPermission($COURSE_ID) >= 'W')
{
@set_time_limit(0);
$DB->StartTransaction();
if (!CLAnswer::Delete($ANSWER_ID))
{
echo "Error!";
$DB->Rollback();
}
else
$DB->Commit();
}
}
?>| © 2001-2007 Bitrix | Bitrix Site Manager - Content Management & Portal Solutions |