Skip to content

Instantly share code, notes, and snippets.

View mfyz's full-sized avatar
✌️

Fatih Felix Yildiz mfyz

✌️
View GitHub Profile
@mfyz
mfyz / convert.php
Last active December 15, 2015 00:49
html to pdf conversion using doc converter api
<?php
//set POST variables
$url = 'http://c.docverter.com/convert';
$fields = array('from' => 'html',
'to' => 'pdf',
'input_files[]' => "@/".realpath('input.html').";type=text/html; charset=UTF-8",
);
$ch = curl_init();