Wednesday, December 10th, 2008
Here is a simple php code to hide the image address of our website. It can use to hide url of flash too.
< ?php
$image_path="images/path/to/";
$image_file=$image_path.$_GET['name'];
$sTmpVar = fread(fopen($image_file, 'r'), filesize($image_path));
header("Content-type: image/* ");
echo $sTmpVar;
?>
(more…)
Popularity: 3% [?]
Posted in PHP | No Comments »
Sunday, June 22nd, 2008
It is so easy to create a email link in our web page. Everyone who know or even don’t know HTML, they can easily create an email link by software.
Email Office-it.orG
However, they are not always know that they can include subject, CC, BCC, and email body text information in the link as well. By using a querystring-like syntax, we can do more with that simple link.
Example code to add the subject:
Email Office-it.orG
Example code to add the cc’s and bcc’s:
Email Office-it.orG
(more…)
Popularity: 27% [?]
Posted in XHTML | 1 Comment »
Monday, April 21st, 2008
Upload .psd designs, download .html file and images. It’s that simple to create CSS compliant webpages.

Some web designers may not have fully knowledge to master CSS, and many of us are good enough with little bit of brushing and designing in PhotoShop. Now, I found a great website, PSD to CSS Online, which provide free service to convert PhotoShop creations into CSS pages online.
(more…)
Popularity: 35% [?]
Posted in CSS, Miscellaneous, Web Design | No Comments »