MySQL Php

SQL VS PHP (Object oriented connection)

HOW TO ESTABLISH THE CONNECTION WITH DATABASE $db = new mysqli(<HOST NAME>,<DB USER>,<DB PASS>,<DB NAME>); HOW TO EXECUTE QUERY $query = “YOUR QUERY”; $result = $db->query($query); HOW TO LIST YOUR QUERY RESULT while($row = $result->fetch_array(MYSQLI_ASSOC)){ echo “Hi ” .$row[‘Name’]. “, Your Email is” .$row[‘Email’]. ” and your phone number is ” .$row[‘Phone’] ; }

Linux

Unzipping files & Zipping files

UNZIP BZ files , tar -xjf <Filename> GZ files, tar -xzf<Filename> ZIP tar -zcvf archive_name.tar.gz directory_to_compress Zip Command To compress: zip squash.zip file1 file2 file3 or to zip a directory zip -r squash.zip dir1 To uncompress: unzip squash.zip this unzips it in your current working directory.

Linux

Tmux Short Key

Session is a set of windows, plus a notion of which window is current. Window is a single screen covered with panes. (Once might compare it to a ‘virtual desktop’ or a ‘space’.) Pane is a rectangular part of a window that runs a specific command, e.g. a shell. ResizingPane Ctrl-b then [ then you […]

Back To Top