Br Indexing Services Gsa AJAX Web App organization Area 51 rss Work Log Html Tag Adminemail Php Echo Multimedia Products Cat Id Seo Search Engine Optimization Php Database Css Files Joomla Php Mysql Google Web Design Colors Membership Database blog Css File Import Functionality Color Schemes Blackberry W3c Ektron Insanity Echo Database Functionality Web Developer tips Transitional Dtd Telegraph Headaches Term Relationships Variables Telecommunications Products Integrity Forefront Traveling tricks Federal Employees redirect Csv Capital Letters Social Networking Strange Person Email Settings PHP Categories Gsa Gov Dynamic Css WordPress Page Rank Phpmyadmin Strategy Free Download Email Account Deans List Military Installation Addressbook Design Nate Ideas Server Hostname Football Game Accurate Time Section 508 Search Engine Optimization App Color Scheme Web Gods Gift Reference Database Import Time Frame Nuances Borders Intranet Information Systems Time Web Husker Football Php Variables World Wide Web CMS Hourly Rates Hourly Fee Last Straw Sql Database Html Xmlns Stylesheet Fellow Web Div Select Name XML Search Google Transition Lotus Lt Divs Laserjet 4100 Images Links Mobile Platforms Rant Internet Explorer 7 Branding Software Applications Export Lot tools developer Div Id Bandwidth Usage Php Password Dashboard Config Php 2.6. 2.62 Tag Longest Time System Administrator Mysql Num Rows Doctype Honesty Php File Web Development University Web Portable Computers Working With Clients free templates News Releases includes 26b Server Username Tip Marketing Asynchronous Javascript And Xml Membership Login View Source steps develop Login Php Array Information Technology Products SEO Microsoft Index Web Developers Download Variation 2.1 Video And Multimedia Lotus Notes Services Software Mysql Fetch Array css Page Password Screen Resolutions Templates Internet Explorer Transparent Image Import Development Sql Server Double Benefit Full Time Web Applications database New Features Formatting box model Mumbo Jumbo encryption Firefox PHP Tips Address Book Free Content Management System SQL Password Reset mySQL Habit Cms Content
Br Indexing Services Gsa AJAX Web App organization Area 51 rss Work Log Html Tag Adminemail Php Echo Multimedia Products Cat Id Seo Search Engine Optimization Php Database Css Files Joomla Php Mysql Google Web Design Colors Membership Database blog Css File Import Functionality Color Schemes Blackberry W3c Ektron Insanity Echo Database Functionality Web Developer tips Transitional Dtd Telegraph Headaches Term Relationships Variables Telecommunications Products Integrity Forefront Traveling tricks Federal Employees redirect Csv Capital Letters Social Networking Strange Person Email Settings PHP Categories Gsa Gov Dynamic Css WordPress Page Rank Phpmyadmin Strategy Free Download Email Account Deans List Military Installation Addressbook Design Nate Ideas Server Hostname Football Game Accurate Time Section 508 Search Engine Optimization App Color Scheme Web Gods Gift Reference Database Import Time Frame Nuances Borders Intranet Information Systems Time Web Husker Football Php Variables World Wide Web CMS Hourly Rates Hourly Fee Last Straw Sql Database Html Xmlns Stylesheet Fellow Web Div Select Name XML Search Google Transition Lotus Lt Divs Laserjet 4100 Images Links Mobile Platforms Rant Internet Explorer 7 Branding Software Applications Export Lot tools developer Div Id Bandwidth Usage Php Password Dashboard Config Php 2.6. 2.62 Tag Longest Time System Administrator Mysql Num Rows Doctype Honesty Php File Web Development University Web Portable Computers Working With Clients free templates News Releases includes 26b Server Username Tip Marketing Asynchronous Javascript And Xml Membership Login View Source steps develop Login Php Array Information Technology Products SEO Microsoft Index Web Developers Download Variation 2.1 Video And Multimedia Lotus Notes Services Software Mysql Fetch Array css Page Password Screen Resolutions Templates Internet Explorer Transparent Image Import Development Sql Server Double Benefit Full Time Web Applications database New Features Formatting box model Mumbo Jumbo encryption Firefox PHP Tips Address Book Free Content Management System SQL Password Reset mySQL Habit Cms Content

I have an amazing business concept, but no money to see it through. Does anyone know of any venture capitalists that might be interested in hearing a web2.0 business concept?

So, in my spare time (like I really have any, huh?) I have been working on and developing an RSS based news aggregation site, called RANCT(RSS Aggregator and News Collaboration Tool). It’s located at www.ranct.com if you wish to take a look.

While I am still working on a lot of additions for it, the core of what the site does is there.
The sites scours the internet for news websites and using there RSS feeds, displays the links to the relevant news. RSS feeds will be able to be tagged as local news by a zipcode. You will then have all your local news on one site.

Popular News uses the assumption that if multiple news agencies are writing on a topic around the same time, then it must be something important and newsworthy. Then it searches for an image that pertains to the story on the relevant sites, displaying them.

Users can share the links they are reading by using a twitter and facebook share link.

So far there has been a couple months into the project and I am ready to start working on some features to make it more friendly to visitors, but for now, the hard stuff is done!

I was working on a little bit of CSS this morning and ran into some problems that I tried researching a solution for.
The problem?
I created a div that contained an image and some text. Then I overlayed another div directly on top of it to protect the image from a right-click as well as to [...]

read more...

As a university web developer I’ve come across the need for a CMS in many diffrent applications. Currently we are using Ektron CMS400 to house over 17K pages. In the past, prior to my employment. The previous web developer used this system for anything and everything, which works, but is not fully effective!
For example, our [...]

read more...

In the past  have always declared my font sizes using the traditional method based on pixel size. Before I made this jump, I figured using px was sufficient enough for my use, but I came to realize that this is not the case. For your reference, this is how I declared font-sizes in the past:
a {
     [...]

read more...

I was working on a project tonight and came across an error that I’ve seen before in my PHP programming. If you have ever worked with PHP includs or requires then you may eventually run intoan error message that looks similiar to this:
Fatal error: Cannot redeclare myfunction() (previously declared in /usr/local/www/myfile.php:48) in /usr/local/www/myfile.php on line [...]

read more...

Im taking a few days off of writing the blog, so I just want to wish every a Happy Thanksgiving!

read more...

There will come a time in your experience in PHP that will require the use of a variable that remains the same for all functions. This variable should be called global and is best placed at the top of your PHP page in your variable declarations section. So, for example:
global $sitetitle;
$sitetitle = “Blazek Web Design”;
Now the [...]

read more...

Have you ever wished you could adjust how bold your font actually appears? In CSS, we are given this ability, but don’t get to excited because it doesn’t work as you expect. For example:
MY FONT (100weight)
MY FONT (200weight)
MY FONT (300weight)
MY FONT (400weight)
MY FONT (500weight)
MY FONT (600weight)
MY FONT (700weight)
MY FONT (800weight)
MY FONT (900weight)
 
As you can tell, [...]

read more...

I was working on a project yesterday that I found it necessary to create an auto-save feature do to the lengthy amount of text that would be entered into a text area. This is a little more complicated, but here it goes!
create.php
<?php
include ‘../../config.php’; //THIS FILE STARTS YOUR DB CONNECTION
if (isset($_POST["submit"])) {
$content = $_POST["content"];
$SQLsavearticle = “PUT [...]

read more...