mehrdd / trello-php

Add new card to Trello with PHP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Trello.php

Add new card to Trello with PHP.

Example of usage:

include "Trello.php";

// Setup
$trello = new Trello;
$trello->setKey('my_key');
$trello->setToken('my_token');
$trello->setListId('my_list_id');

// Add new card
$result = $trello->addCard([
	'name' => 'Test',
	'desc' => 'This is a description!',
	'urlSource' => 'https://vandaw.com'
]);

print_r($result);

About

Add new card to Trello with PHP


Languages

Language:PHP 100.0%