Archive for July, 2009

Http Codes explained

This item was filled under [ Basic, Default, HTML, PHP ]

HTTP CODES 100-101

100
Continue
Tells the client that the first part of the request has been received and that it should continue with the rest of the request or ignore if the request has been fulfilled.

101
Switching Protocols
Tells the client that the server will switch protocols to that specified in the Upgrade message header field during the current [...]

Continue reading...

Tagged with: [ , , , ]

View hidden files with Zend Studio 6

This item was filled under [ Default, PHP ]

I usually code with Zend Studio 5.5, but since has been released the 6′th version (and now the 7′th Beta), I must use the 6′th version. Honestly, I don’t like this version. For me, ZS 5.5 is the best, but I have to work with this too.
Ok, now let’s get to the point. I have [...]

Continue reading...

Tagged with: [ , , , , ]

Mysql SHOW syntax

This item was filled under [ MySQL ]

SHOW CHARACTER SET [like_or_where]
SHOW COLLATION [like_or_where]
SHOW [FULL] COLUMNS FROM tbl_name [FROM db_name] [like_or_where]
SHOW CREATE DATABASE db_name
SHOW CREATE FUNCTION func_name
SHOW CREATE PROCEDURE proc_name
SHOW CREATE TABLE tbl_name
SHOW DATABASES [like_or_where]
SHOW ENGINE engine_name {LOGS | STATUS }
SHOW [STORAGE] ENGINES
SHOW ERRORS [LIMIT [offset,] row_count]
SHOW FUNCTION CODE func_name
SHOW FUNCTION STATUS [like_or_where]
SHOW GRANTS FOR user
SHOW INDEX FROM tbl_name [FROM db_name]
SHOW INNODB STATUS
SHOW [...]

Continue reading...

Tagged with: [ , , ]

Yahoo messenger archive decoder

This item was filled under [ Default ]

Have you ever asked yourself how to open and read a .dat file from yahoo archive folder ?
well here is the answer. :
Super Yahoo Messenger Archive Decoder (14086-1)
You may download it from here
As you will see it cost 19 dollars, but trust me, it worths all the money.
It may save all conversations as html files [...]

Continue reading...

Tagged with: [ , , , , ]

CSS Syntax

This item was filled under [ CSS ]

Syntax
selector { propery: value; }
Example:

body {
font-size: 12px;
color: #333;
margin: 0;
padding: 0;
}

External style sheet
<link rel=”stylesheet” type=”text/css” href=”style.css” />
Internal style sheet
<style type=”text/css”>
selector {property: value;}
</style>
Example:

body {
margin:0;
padding:0;
background-color:#dbdbdb;
}
* {
font-family:Verdana, Arial, Helvetica, sans-serif;
}
a img {
border: 0;
}

Inline style
<tag style=”property: value”>

Continue reading...

Page 1 of 212»
Update me when site is updated