PHP code example of qikker-online / external-url

1. Go to this page and download the library: Download qikker-online/external-url 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/ */

    

qikker-online / external-url example snippets


ExternalUrl::make('URL', 'url')->customTitle('Click Here'),

ExternalUrl::make('URL', 'url')->customTitle(function() {
    return 'Click Here: '.$this->url;
}),

ExternalUrl::make('URL', 'url')->customUrl('https://www.qikkeronline.nl'),

ExternalUrl::make('URL', 'url')->customUrl(function() {
    return 'https://'.$this->url;
}),