Search in:
Home
Login Form
Username

Password

Remember me

Forgotten your password?
No account yet? Create one
555 Resources listed in over 1289 categories 0 Resources added in past 3 days
 AJAX (25) Articles (33) ASP (4)
 ASP.NET (3) C and C++ (3) CFML (3)
 CGI and Perl (10) CSS (1) Java (10)
 JavaScript (3) PHP (429) Python (5)
 Remotely Hosted (15) Ruby on Rails (4) Tutorials (4)
 XML (3)
Just Added New This Week Prior To This Week
 
New Discussions
Last Post Title Replies Views
09-Feb-2009 21:49:08 What is the best movie you have seen this year? 0 15
09-Feb-2009 21:47:43 WSO2 offers open source, componentized SOA 0 12
09-Feb-2009 21:44:14 Microsoft lends Google a license for Sync 0 11
08-Feb-2009 11:11:22 MySQL Co-founder Leaves Sun 0 10
08-Feb-2009 11:01:16 C program to print the sourcecode of itself 1 14
13-Nov-2008 08:12:11 Gasoline is now at $1.94! 1 22
12-Nov-2008 15:39:32 Any idea of what the most used script is? 0 10
12-Nov-2008 15:37:39 Have you been good this year? Either way, what do you want for Christmas? 0 8
26-Oct-2008 22:00:50 Book Suggestions Needed for New Member Choice Books Feature 2 28
26-Oct-2008 21:56:46 Viral Video and Social Bookmarking Scripts 2 20

New Articles
How to Use an RSS Feed to Provide Content for Your Website  by The Administrator
Mon Feb 16, 2009
Learn how to use an XML RSS Feed to automatically deliver quality content to your website.
How Ajax Works With J2EE And Scripting Languages  by The Administrator
Mon Feb 09, 2009
Here I am going to discuss the benefits of the Ajax application using J2EE and scripting and the advantage of using them together.
Know When You Should not Use Ajax  by The Administrator
Mon Feb 09, 2009
First let me describe the meaning of Ajax before moving to our discussion Ajax (sometimes called Asynchronous JavaScript and XML) is a way of programming for the Web that gets rid of the hourglass. Data, content, and design are merged together into a seamless whole. When your customer clicks on something on an Ajax driven application, there is very little lag time.
The Importance of Using Comments in PHP Programming  by The Administrator
Sun Feb 08, 2009
A detailed look at how comments are used in PHP and how to use them. Furthermore, details on troubleshooting with PHP comments is outlined and explained.
How to Find the Proper PHP Book For Your Needs  by The Administrator
Sun Feb 08, 2009
PHP books are becoming harder and harder to find. Not because there is a lack of quantity, but quality. The right PHP book should guide your certain skill level to an advanced level.
How Much Traffic Do Most Web Sites Get?  by The Administrator
Wed Nov 26, 2008
There are plenty of articles around giving good advice on how to drive traffic to your web site, but how much traffic do most web sites get?
How Much Revenue Can You Make by Placing Adverts on Your Website?  by The Administrator
Wed Nov 26, 2008
One thing that is often difficult to gauge is how much traffic you need before you can start to make some money out of your site from adverts. Of course, if you allow Google to place Adsense units (adverts) on your site you can, at least in theory, start earning money from day one. The reality though, is that you need to get some serious traffic before this type of advertising will reap any real financial rewards.
A Quick Guide to Using the Regular Expression Substitution Operator  by The Administrator
Wed Nov 26, 2008
Regular expressions enable you to find patterns in strings, for example, all the H1 tags in an HTML file, or all the words beginning with the letter 'p'. Although the use of regular expressions is possible in several programming languages, it is Perl's support for regular expressions that makes it the language of choice for pattern matching and substitution.
Using Perl to Convert Hyperlinks and Filenames to Lowercase  by The Administrator
Wed Nov 26, 2008
Like a lot of web developers, I'm not always that disciplined when it comes to the file naming convention I use and I sometimes end up with a situation whereby I have some files that are in lowercase, some that begin with a capital, and some that are a bit of a mixture.
Ajax Applications Development  by The Administrator
Mon Nov 24, 2008
AJAX has not only sprouted but has got root hold in developing dynamic web applications, that reflects changes in micro seconds thereby saving reloading time, improving usability, providing faster accessibility, to more web pages in lesser time. AJAX, acronym for Asynchronous Javascript And XML is the term whispered from almost every software developer mind and its waves are touching the network boundaries.
New Tutorials
 Using PHP and Regular Expressions to Tidy Up Variables  by The Administrator
Mon Feb 16, 2009
I recently had to develop a very simple email manager for a client. It was necessary to extract some text from a database and then to insert that text into an email message, which was then fired off to a mailing list. The problem I had was that the text contained HTML tags as well as other HTML characters (for example, nbsp;), and I only wanted plain text in the email.
 PHP Redirect - How to Send Someone to Another URL With PHP  by The Administrator
Mon Feb 16, 2009
When designing a web site, it is occasionally necessary to redirect a user to another URL to the one they have tried to access. This can normally be accomplished using HTTP redirect, however sometimes they just are not applicable or you would prefer to do it with PHP, this article will show you how.
 Using Include Files to Make Changes to All Your Website Pages Instantly  by The Administrator
Mon Feb 16, 2009
You have a template you use to make changes to your menubar and page header. Is there a way you can apply those changes to all your pages instantly?
 Create Dynamic Database Driven CSS Navigation Menus with Dreamweaver, PHP and MySQL  by The Administrator
Mon Feb 16, 2009
Create dynamic, easy-to-update CSS menus using PHP, MySQL and Dreamweaver. The CSS menus are very search engine friendly, easily changeable via MySQL and CSS, and can be included in a Dreamweaver template for simple site-wide navigation management.
 PHP Strings  by The Administrator
Mon Feb 16, 2009
Learn what strings are and how to work with strings in php
 PHP Web Development: PHP Variables  by The Administrator
Mon Feb 16, 2009
In this lesson we cover the basics of variables. What variables are, what they are used for and how to work with variables in PHP using some examples.
 Using PHP Buttons In Dreamweaver  by The Administrator
Mon Feb 16, 2009
Even if you don't know how to code one line bit of PHP, the Dreamweaver PHP buttons can help you create database functions on your webpages. Learn about the easy PHP buttons features of Dreamweaver to build your own web-based PHP/SQL applications, even if you are a total newbie.
 How to Implement CAPTCHA With PHP and GD  by The Administrator
Mon Feb 16, 2009
When you have a public submission form on your website (contact page, forum submission) and need to prevent spam auto-submitters - common way to do this is to implement CAPTCHA - an image with randomly generated string.
 Introduction To Regular Expressions In PHP  by The Administrator
Mon Feb 16, 2009
Regex can be scary at first but if you can get the basics, it is really not too hard to understand. In this article, we are going to look at how regex comes into the picture when writing php applications.
 Working With Fractions In PHP  by The Administrator
Mon Feb 16, 2009
Most of us are uncomfortable with using fractions when writting programs. If we encounter a fraction, we will first convert it into a floating point number (with decimals) and proceed from there. Most programming languages would prefer to use 0.5 as opposed to 1/2 because the later conflicts with the syntax of the languages. In this article, I will discuss my attempt to work with fractions in one of the PHP projects that I have done.

Industry Press
Accucom Corporation Introduces SafeID, Allowing Online Merchants, Auction Sites and Social Networks to Quickly and Easily Authenticate User Identities
Tue Jun 30, 2009
ID verification service protects online merchants and communities from fraudulent purchases and behavior
MochaHost.com Announces new Summer Specials!
Mon Jun 01, 2009

MochaHost.com (San Jose, California) is pleased to announce to its new & current customers that some very attractive promotions are now available for the new Summer Season!

HostGator Announces Partnership with SmarterTools
Wed May 20, 2009
HostGator.com LLC, a world leading provider of shared, reseller, and dedicated Web hosting, is proud to announce a partnership with SmarterTools Inc. to provide a new line of Web hosting software for its Windows dedicated server customers.
David and Goliath battle shapes up between GoDaddy and One World Hosting
Fri May 08, 2009
Ohio-based hosting provider One World Hosting has slung the first stone in a battle with hosting Goliath GoDaddy.
Limestone Networks now offers secure server access via Google’s G1 mobile phone
Mon Apr 06, 2009
Limestone Networks, a dedicated server provider located in Dallas, TX, has written and launched a Google phone application that clients can use to manage their accounts and dedicated servers.
Limestone Networks opens new, highly secure data center in downtown Dallas
Fri Nov 07, 2008
Limestone Networks has opened a new dedicated hosting facility and data center in the DataBank building in downtown Dallas. The facility features all-fiber connectivity, multiple connections to the power grid, redundant power and cooling systems, and multiple security layers.
UK2 Group Acquires WestHost.com
Fri Nov 07, 2008
UK2 Group has acquired Utah-based WestHost.com completing a program of growth-by-acquisition in the US Hosting Market. UK2 Group will continue to operate WestHost’s data center in Salt Lake City, as well as offices in Logan, UT, and will maintain WestHost’s high levels of personal service by retaining all key personnel.
MochaHost.com – Announces a Big Halloween Sale!
Fri Oct 31, 2008
MochaHost.com (San Jose, California) is pleased to announce to its new & current customers that some very attractive promotions are available on Halloween!  All hosting plans are available with a 20% discount only on October 31st of 2008 (Halloween Day).
Netfirms Offers Newly-versioned XLR8 Control Panel
Tue Oct 28, 2008
The domain registration and web hosting technology company Netfirms, has launched a new version of its easy-to-use control panel, dubbed Netfirms XLR8. The new control panel is easier and faster to use and enables small businesses to enjoy all the benefits of clustered hosting and Web 2.0 cloud computing.
MochaHost.com – Announces new Fall Specials!
Tue Sep 02, 2008

MochaHost.com (San Jose, California) is pleased to announce to its new & current customers that some very attractive promotions are now available for the new Spring Season!

Industry News
US wants privacy in new cyber security system
  AP - Fri Jul 03, 2009 4:31 am CDT
 

US Homeland Security Secretary Janet Napolitano speaks to journalists after signing an agreement with the Portuguese government on the fight against crime and terrorism, Tuesday, June 30 2009, at the Necessidades Palace, the Portuguese foreign ministry, in Lisbon. (AP Photo/Armando Franca)AP - The Obama administration is moving cautiously on a new pilot program that would both detect and stop cyber attacks against government computers, while trying to ensure citizen privacy protections.


Web retailers, states tussle over tax rules
  AP - Thu Jul 02, 2009 8:08 pm CDT
  AP - In a big break for online shoppers, Web retailers generally don't have to charge sales taxes in states where they lack a store or some other physical presence.
Companies pledge more openness about Web tracking
  AP - Thu Jul 02, 2009 6:43 am CDT
  AP - Companies that track consumer behavior online for advertising purposes are vowing to make their practices more transparent and to give people a way to decline being shadowed.
PC makers voluntarily supply Web filter in China
  AP - Thu Jul 02, 2009 8:08 am CDT
 

Children use computers in a library in Xiangfan in central China's Hubei province Wednesday July 1, 2009.  In a rare reversal, China's government gave in to domestic and international pressure and backed down from a rule that would have required personal computers sold in the country to have Internet-filtering software.  Just hours before the rule was to have taken effect Wednesday, the government said it would postpone the requirement for the 'Green Dam' software. (AP Photo)AP - Several PC makers were including controversial Internet-filtering software with computers shipped in China on Thursday despite a government decision to postpone its plan to make such a step mandatory.


Facebook plans to simplify privacy settings
  AP - Wed Jul 01, 2009 4:14 pm CDT
  AP - Facebook is overhauling its privacy controls over the next several weeks in an attempt to simplify its users' ability to control who sees the information they share on the site.
Sony struggling as Walkman hits 30th anniversary
  AP - Wed Jul 01, 2009 5:27 am CDT
 

Sony Corp.'s employee Rumi Yamaguchi smiles in front of a special display commemorating the Sony Walkman's 30th anniversary that opens Wednesday, July 1, 2009, at Sony Archive building  in Tokyo, Japan. The first portable cassette-tape player Walkman, shown second from left on the top shelf, hit the Japanese market on July 1, 1979. (AP Photo/Shuji Kajiyama)AP - When the Sony Walkman went on sale 30 years ago, it was shown off by a skateboarder to illustrate how the portable cassette-tape player delivered music on-the-go — a totally innovative idea back in 1979.


Jackson fans told to stay away as tickets up for grabs
  AFP - Fri Jul 03, 2009 4:14 pm CDT
 

Michael Jackson's star on the Hollywood Walk of Fame on Hollywood Boulevard. Jackson's family has announced a free public memorial service for the tragic pop icon in Los Angeles, as a battle looms with his ex-wife who wants custody of their two children.(AFP/Paul J. Richards)AFP - Fans heading to Los Angeles for Michael Jackson's memorial extravaganza were urged to stay away on Friday as organizers said tickets for the event would be allocated by an online lottery.


Ericsson announces broadband contracts in China
  AFP - Fri Jul 03, 2009 3:08 pm CDT
 

Swedish mobile phone network supplier Ericsson won contracts to supply broadband Internet to millions of users in China by a deal with three operators there.(Ericsson/File)AFP - Swedish mobile phone network supplier Ericsson won contracts to supply broadband Internet to millions of users in China by a deal with three operators there, it said Friday.


Bluetooth "Big Brother" tracks festival-goers
  Reuters - Fri Jul 03, 2009 1:59 pm CDT
  Reuters - Researchers are using Bluetooth technology to observe the meanderings of tens of thousands of festival-goers at a top European rock festival, hoping their findings will launch a new generation of tracking devices.
Michael Jackson sales surge expected to last months
  Reuters - Fri Jul 03, 2009 4:25 pm CDT
  Reuters - In the days following Michael Jackson's June 25 death, fans flocked to record stores and digital music outlets to purchase one last memory. And merchants say they expect the Jackson sales surge to last for weeks -- maybe even months.


Statistics
Current Stats
New Listings:
0
Referrals:
1
Members Online:
0
Visitors Online:
0
Yesterday's Stats
New Listings:
0
Referrals:
1
This week's Stats
New Listings:
0
Referrals:
7
Totals
Members:
8498
Listings:
555
Categories:
1289
Reviews:
1
Votes:
2
Total Hits:
185129