Jox Technology

Online resource of games, gadgetm and web development

Advertisement

Archive for the ‘ Tutorials ’ Category

Here are some  awesome Photoshop tutorials i found in the net  in pdf  format.

1. Photoshop light effect in 10 Steps

2. Smoke Type in Photoshop

 

3. Super Cool Frilly Bits Typography

 

4.Add Another Dimension effects

 

5.Creating A Fantastic Fantasy Night Sky In Photoshop

 

6.How To Create A Gold Text Effect

 

7.Using Light and Shade to Bring Text to Life

 

8.Slow Shutter Effect

 

9.Lines Tutorial

 

10.Chroma Wallpapers

 

DOWNLOAD HERE

 

 

A useful function to get and display the current page url.

<?php
function getPageURL() {
$pURL = ‘http’;
if ($_SERVER["HTTPS"] == “on”) {$pURL .= “s”;}
$pageURL .= “://”;
if ($_SERVER["SERVER_PORT"] != “80″) {
$pURL .= $_SERVER["SERVER_NAME"].”:”.$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
} else {
$pURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
}
return $pURL;
}

echo getPageURL();

?>