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

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 provide a nive hover effect around everything, image and text, no matter the location of the cursor(as long as it was over the div containing those items).

I got everyting work just fine in Firefox, but in Internet Explorer I ran into a problem. In Internet Explorer, a div that is transparent will allow items that are underneath it to be clicked, which made my div not hover correctly on the two browsers!

The solution, set a background image that links to a 1px by 1px gif transparent image!

Here is the code to display the image and text with the overlaying div. NOTE: this sytem was used for a video dashboard display, hence the name of the divs used below:

<div id="eachvideo">
	<img src="myimage.jpg" />
      	<div style="float:left; width:100px; margin-left:10px;">
		<strong>Image caption</strong>
	</div>
</div>
<a href="#mylinkhere" id="eachvideotop"></a>
Then the relevant CSS:
#eachvideo {
position: relative;
width:100%;
height:100%;
background: #DDDDDD;
z-index:0;
}

a#eachvideotop {
position:relative;
left:0px;
top:0px;
display:block;
width:118px;
height:142px;
z-index:2;
margin-top:-144px;
background: url(transparent.gif);

}

a#eachvideotop:hover {
border: 1px solid #000000;
}
#eachvideo img {
float:left;
clear:right;
width:100px;
height:auto;
padding:10px 10px;
z-index:1;
}

Try it out!

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...

This is really a very basic and very simple method of populating a select box with database data. For example, If you have a list of states in your database, you could create a drop-down box that you can select all the states without a long drawn out piece of code. Here’s what your table entitled [...]

read more...