what path you are in
pwd
show the listings
ls
/* http://meyerweb.com/eric/tools/css/reset/ | |
v2.0-modified | 20110126 | |
License: none (public domain) | |
*/ | |
html, body, div, span, applet, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, abbr, acronym, address, big, cite, code, | |
del, dfn, em, img, ins, kbd, q, s, samp, | |
small, strike, strong, sub, sup, tt, var, |
-- Create a new friend record. | |
INSERT INTO | |
friend | |
SET | |
name = 'Kim', | |
isBFF = true, | |
updatedAt = UTC_TIMESTAMP() | |
; | |
-- Return the newly-generated primary-key. |
// GET: | |
const Http = new XMLHttpRequest(); | |
const url='http://example.com/'; | |
Http.open("GET", url); | |
Http.send(); | |
Http.onreadystatechange=(e)=>{ | |
if (Http.readyState === 4) { | |
console.log(Http.responseText); | |
} | |
} |
<?php | |
$host = 'localhost'; | |
$user = 'root'; | |
$password = '123456'; | |
$dbname = 'pdoposts'; | |
// Set DSN | |
$dsn = 'mysql:host='. $host .';dbname='. $dbname; | |
// Create a PDO instance |