Skip to content

Instantly share code, notes, and snippets.

View je8n's full-sized avatar
🏠
Working from home

Serkan Özdemir je8n

🏠
Working from home
View GitHub Profile
@egyjs
egyjs / Direct Link of YouTube videos.md
Last active July 10, 2024 20:54
PHP API To get Direct Link of YouTube videos
@jasondavis
jasondavis / php_array_table.php
Created June 30, 2016 07:15
PHP Array to HTML Table
<?php
function html_table($data = array())
{
$rows = array();
foreach ($data as $row) {
$cells = array();
foreach ($row as $cell) {
$cells[] = "<td>{$cell}</td>";
}
@umidjons
umidjons / index.html
Last active January 6, 2024 18:46
Upload File using jQuery.ajax() with progress support
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Upload File using jQuery.ajax() with progress support</title>
</head>
<body>
<input type="file" name="file" id="sel-file"/>