Showing posts with label Web Development. Show all posts
Showing posts with label Web Development. Show all posts

Friday, October 19, 2007

Northern Frontier Travel and Tours, now up!

Today I've finished the website for Northern Frontier Travel and Tours(NFTT). NFTT offers tour packages for experiencing the unique tourist destination, attractions and tradition of the northern part of the Philippines.

I created the site using CSS and XHTML.

Visit website:
www.northernfrontiertravel.com

Tuesday, March 27, 2007

PHP Programmer for rent

I am looking for PHP/MySQL programming projects. No project is too tiny and serious projects are welcome. If you need someone to check on the source code of your current web pages and/or applications, that I can also do.

This checks are to see if:
a). your code complies with PHP coding standards.
b). your code has loopholes.
c). some functions in the code can be used for vulnerability exploits.

I am experienced with Unix(FreeDSB) and Windows.

Some of my work:
a) www.leisurecoast.com
b) Digital library for schools

If interested you can contact me through my email:
omegahash@gmail.com

LCR site's up

I just noticed that the site I designed for Leisure Coast Resort is up again. LCR is a great resort located at Bonuan Binloc, Dagupan City, Philippines. Please check the site right here.

Monday, March 12, 2007

Business Side of Web Design

"A 40 step review of good processes and habits to run a Web design business." - original text from digg.com



read more | digg story

Thursday, March 8, 2007

Web 2.0 for "Developers, Developers, Developers..."

"The post is a compilation of web applications that could aid developers with their projects. Covers a wide selection of tools for project planning, development, issue tracking, documentation, usability testing, and more." - original text from digg.com



read more | digg story

Wednesday, March 7, 2007

8 Web Design Tactics to Help You When You're Stuck

"Web design can be incredibly frustrating. You'd think that with all the infinite possibilities of what-goes-where it'd be pretty easy to land a design that works, yet somehow we've all been there: stuck working on a design that refuses to look right. These 8 tactics are what I use to get out of that sticky spot." - original text from digg.com



read more | digg story

The Web Developers List of Resources.

"This page is huge. Everything you can imagine form FF plugins to Ruby. This page has it all." - original text from digg.com



read more | digg story

Wednesday, February 21, 2007

Get IP with Time Date in PHP

Here’s a simple script I’ve written for logging IP’s that stumble upon my main webserver.

/* start code */
$ip = $_SERVER[’REMOTE_ADDR’];
$dte = date(”l jS F Y, g:i A”);
echo “Your IP address is: $ip”;
echo date(”l jS F Y, g:i A”);

/* then give them a warning that they had been logged */
echo (”Your visit on my site was logged!”);
/* end of code */

Sample output:
Your IP address is: xxx.xxx.x.xxx
Saturday 15th October 2005, 1:02 AM
Your visit on my site was logged!


This little script is pretty cool when coupled with the free program called IPnetinfo a small utility that allows you to easily find all available information about an IP address. This utility can also be very useful for forensics after an attack has occured (that is if the attacker is lame enough to leave the *cough* log files uncleaned).

This is the script to save every hit to a file called ‘myLog.txt’.

/* start of code */
$fileopen = fopen(”myLog.txt”, “a”);
fwrite ($fileopen, $dte.” - “.$ip.”\n”);
fclose ($fileopen);
/* end of code */

That’s it!