PHP code example of canaryphp / canaryphpconservation

1. Go to this page and download the library: Download canaryphp/canaryphpconservation library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

canaryphp / canaryphpconservation example snippets



a href=\"contacts.php\">Contacts</a>";


 = new \CanaryPHPConservation\Canary();
$conservation = $canary->conservation('',new \CanaryPHPConservation\ConservationManager('conservations','messages'));
$res = $conservation->setViewer('3')->setReceiver('9')->setContactsTemplate(__DIR__.DS.'templates'.DS.'Contact.php');
$canary = new \CanaryPHPTools\Canary();
if ($canary->request()->is()->post){
    $res->registerConservation($_POST['title'],$_POST['sub']);
}
echo $res->getConservations();


 = new \CanaryPHPConservation\Canary();
$id = $_GET['id'];
$conservation = $canary->conservation($id,new \CanaryPHPConservation\ConservationManager('conservations','messages'));
$res = $conservation->setViewer('3')->setReceiver('9')
                                ->setViewerTEXTMSGTemplate(__DIR__.DS.'templates'.DS.'ViewerTEXTMSG.php')
                                ->setViewerIMGMSGTemplate(__DIR__.DS.'templates'.DS.'ViewerIMGMSG.php')
                                ->setViewerVIDEOMSGTemplate(__DIR__.DS.'templates'.DS.'ViewerVIDMSG.php')
                                ->setViewerAUDIOMSGTemplate(__DIR__.DS.'templates'.DS.'ViewerAUDMSG.php')
                                ->setViewerATTACHMENTMSGTemplate(__DIR__.DS.'templates'.DS.'ViewerATTMSG.php')
                                ->setReceiverTEXTMSGTemplate(__DIR__.DS.'templates'.DS.'ReceiverTEXTMSG.php')
                                ->setReceiverIMGMSGTemplate(__DIR__.DS.'templates'.DS.'ReceiverIMGMSG.php')
                                ->setReceiverVIDEOMSGTemplate(__DIR__.DS.'templates'.DS.'ReceiverVIDMSG.php')
                                ->setReceiverAUDIOMSGTemplate(__DIR__.DS.'templates'.DS.'ReceiverAUDMSG.php')
                                ->setReceiverATTACHMENTMSGTemplate(__DIR__.DS.'templates'.DS.'ReceiverATTMSG.php')
                                ->setNoDATATemplate(__DIR__.DS.'templates'.DS.'NODATA.php')
                                ->setNoMSGTemplate(__DIR__.DS.'templates'.DS.'NOMSG.php');
if ($res->Auth()) {
$canary = new \CanaryPHPTools\Canary();
if ($canary->request()->is()->post){
    $res->registerMessage($_POST['msg'],$_POST['msg_type']);
}
$msgs = $res->getMessages();
}else{
    $msgs = "<center><h1>Authenfication Error</h1></center>";
}