Archive for June 2551

CSS: CENTERING THINGS

Centering lines of text

P { text-align: center }
H2 { text-align: center }

Centering a block of text or an image

P.blocktext {
    margin-left: auto;
    margin-right: auto;
    width: 6em
}
...
<P class="blocktext">This rather...
IMG.displayed {
    display: block;
    margin-left: auto;
    margin-right: auto }
...
<IMG class="displayed" src="..." alt="...">

Centering a block or an image vertically

DIV.container {
    min-height: 10em;
    display: table-cell;
    vertical-align: middle }
...
<DIV class="container">
  <P>This small paragraph...
</DIV>

Ref: http://www.w3.org/Style/Examples/007/center

Popularity: 12% [?]

กลับไปหน้าที่แล้ว

วิธีการที่จะทำให้ script กลับไปหน้าที่แล้วหลังจากทำงานเสร็จคือใช้ $_SERVER['HTTP_REFERER'] ครับ

<?php

// Somethint here

// Redirect back to previous page
$previous = $_SERVER['HTTP_REFERER'];
header("location:$previous");
exit;
?>

Popularity: 13% [?]

วิธีการดู log file ของ squid แบบง่ายๆ

วิธีการดู log file ของ squid แบบง่ายๆ

#
#tail -f /var/log/squid/access.log | awk '{print $8,$7,strftime("%c",$1),$3}'
#

อ้างอิงจาก http://www.linuxquestions.org/questions/linux-newbie-8/unix-time-conversion-604263/

Popularity: 15% [?]