Skip to content

Instantly share code, notes, and snippets.

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

Loc_rabbirt tienloc1

🏠
Working from home
View GitHub Profile
@tienloc1
tienloc1 / index.html
Last active December 14, 2015 10:18
html5 index
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Title of This Web Page</title>
<meta name="description" content="Description of the content of this web page." />
<link type="icon" href="images/logo-polo360.png">
<link rel="stylesheet" href="css/style.css" />
</head>
/*! normalize.css v2.1.2 | MIT License | git.io/normalize */
/* ==========================================================================
HTML5 display definitions
========================================================================== */
/**
* Correct `block` display not defined in IE 8/9.
*/
@tienloc1
tienloc1 / side-a.php
Created April 10, 2021 06:06
sidebar for learn
<div id="content-container">
<div id="section-navigation">
<ul class="navi">
<?php
// Cau lenh truy xuat categories
$q = "SELECT cat_name FROM categories ORDER BY position ASC";
$r = mysqli_query($dbc, $q) or die("Query {$q} \n<br/> MySQL Error: " . mysqli_error($dbc));
while($cats = mysqli_fetch_array($r, MYSQLI_ASSOC)) {
echo "<li><a href='index.php'>" . $cats['cat_name'] . "</a>";
@tienloc1
tienloc1 / gui-note.au3
Created October 6, 2022 19:02
autoit - notepad lesson
#cs ----------------------------------------------------------------------------
Learn AutoIT - by JUNO_OKYO
From J2TEAM with love!!!
#ce ----------------------------------------------------------------------------
; Script Start - Add your code below here