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

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