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

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