Form and Query
Write a Review
Add to My Favorite
Refer it to Friend
Report Broken Link
Other links owned by this user
This very simple plugin was built for my own use. The idea was to make one call for my checkbox, update to the database, and an effect. This plugin is easy to use and install, i dont have it setup in an svn yet so you will need to download it and place it in RAILS_ROOT/vendor/plugins/HERE.
Category:
This extension adds floating hearts to your page. The main features are:
* JavaScript based effect, does not required additional browser plugins
* Does not requires external files(no images, no external javascripts,...)
* Configurable colors
* Configurable size
* Randomizes colors
* Randomizes sizes
* Configurable Font (used for rendering hearts)
* Configurable motion speed
* Very easy to insert in your web pages
* No programming skills required
* Compatible with most browsers
* Compatible with both PC and MAC
Category:
This is a massive webmaster toolchest! The highest quality you'll find anywhere! Available for instant download or on CD!
Category:
Simfatic Forms (www.simfatic.com) is a complete web form development software. You can create forms add form validations, select your options for server side processing, generate the script and install the form on the web server.
No coding required.
Category:
Dreamweaver ASP Visual Calendar is a calendar that can be inserted from Dreamweaver and allows to associate floating text layers to dates. The calendar is built with ASP and Ajax technologies and can be managed from a HTML administration console without requiring programming skills.
Category:
This script is perfect if you would like the ability to have a poll on your webstite to gather feedback or just for fun online.
Category:
Gixaw Power Chat enables real-time feature-rich AJAX group chat for any website. No additional plugin required before your visitors can start chatting and sharing files/images/music/videos. This is the most powerful web chat application and takes just minutes to install.
Category:
ASPLD is a open source fast and highly scalable listing / link directory - It has been built from the ground up in ASP.NET 3.5 C# .
Category:
Learn how you can create a small and simple PHP script to log your visitors activity into a file. You just need to add 1 line to each of your page to enable logging and the statistics will be collected in a html file so you don't have to setup any database for this task.
Category:
PHPProLance just got better! Version 2.0.1 is a whole new software solution for you to run your very own freelancing website. Allowing you to fully control both your members, payments, fee's and projects
Category:
While creating and editing HTML in blog posts still possible and easy with Wordpress, Blogger the blogging system used by more than 10 millions blog, still don't offer the sufficiant and advanced possibilities for a real Blogger. It's this problem that let me act and create a small website dedicated to help any Blogger or other poeple create HTML documents. I already included 2 different and famous editor, you can chose one to start editing your pages.
Category:
Keyword Grabber analyzes the referrer and looks for search engine keywords. It has been tested on Google, Yahoo, Ask, and MSN, and will work on any search engine that uses q or p as the query parameter containing the keyword. New parameters to search for can be added easily. It does not come with any logging code (by default it prints the keyword to the screen) but that can be easily added. To install, all one needs to do is include the file in all the pages to be tracked. A demo can be found on every page of 1Scripts.
To add new keywords, edit the script and add to the $tolookfor array, adding the parameter prefixed with both ? and &. A comment indicated where to place the logging code or any other code that should be executed when a keyword is found.
Category:
PHP Event Calendar is an easy to use event calendar script which can be used on all your websites and web pages. There are unlimited amount of style combinations - you can change everything - size, colors, fonts, borders, date and time formats, week starting days. Once installed on your website with a single copy and paste you can put it on any of your website pages. You can have a calendar on your website within minutes !
Category:
PHP link manager will completely automate your reciprocal links exchange!
Webpage thumbshots
Valid HTML 4.01 Transitional
Added google page rank for recip links
SEO Friendly & Mod rewrite php to html
Supports bad word filter list on submission
Supports checking recip page & Home page for nofollow & noindex
PHP tempates are configured by settings.php
Records all user agents for simple stats and page reffer.
Linkman now uses user agent string, instead of blank
Added editor for editing settings.php from admin panel online
Automatic live update to check you have current version
Directory structure change ready for convert to mysql
Default template supports browser compatability
Added a nice banner and ico to templates
Line numbering the amount of links
Shows the recip link in admin panel
Shows the recip onlink check in admin panel on failed pages
Simple stats on hits to links page in admin panel.
Plus many other small features
Category:
With Remote Window remote desktop service, you can now see and work on your PC remotely in real-time and have immediate access to your files, emails and programs. You can share files with family and friends directly from your computer, no third party software or service needed.
Category:
N2C TreeView is a server control that allows you to build your hierarchical based navigation structure using such popular sources as XML files or databases. It also supports dynamic population through client-side callbacks to the server, hierarchical data binding, templates and appearance customization through built-in skins and themes.
Category:
Buy and Download a ready-made, stand alone static Flash Photo Gallery with externally loaded images. This unique photo gallery has 4 categories and the images zoom and enlarge as you click on the thumbnail images. You can also add descriptions for each of the images.
Category:
Mass Paid™ is the ultimate PayPal® affiliate payment script and truly is an internet marketers dream come true! Mass Paid™ allows you to offer instant cash rewards to anybody with a PayPal® account. That's over one hundred million people! Note: This script does not use "return payment loops"; it's based on the proprietary PayPal® API
Category:
We have a large range of template based websites which will be customized to suit your business.
This package includes EQ Hosting Standard, a Domain Name and an email redirector
Category:
Have you ever wanted to protect a PHP page to prevent people from viewing sensitive information?
Well I haven't but that doesn't stop me showing you how to do it if you ever need to .
The code below is extremely simple indeed. Anyone with a basic PHP understanding will see how simple it is.
Category:
Other links at PHP > Tips and Tutorials > Form Processing
Many sites allow users to upload files through an HTML form. While there are many security issues that should be addressed before allowing file uploads, the actual mechanisms to allow this are fairly easy
Category:
1. Use $_SERVER['PHP_SELF'] as a form action.
The $_SERVER auto-global array holds various useful server- and request-specific info. The PHP_SELF element of $_SERVER holds the filename of the currently executing script (relative to your web site's document root directory). So, supplying $_SERVER['PHP_SELF'] as the action attribute of the form tag makes the form submit to the same page that displayed it. This lets you put the logic to handle the form in the same page as the logic that displays it. For many simple forms, this keeps things easy to manage.
Category:
Let's get interactive with surfers again. I'd like to create a form mail system in PHP. First we need to create a form in HTML to gather the information. I am going to use one similar to my Perl form mailer script, because it looks clean.
Category:
The validation of data that has been entered in a form is necessary in most cases. Why is important? For example, what good is holding a contest or sweepstakes if you can't notify the winner, because he or she entered an invalid telephone number or an incorrect address. What good is having a mailing list if the e-mail addresses on it aren't verified, and your mailing list just bounces back to you without reaching the subscribers and target audience.Validating form entries saves you time and more importantly, it can save you money. And since somebody embossed the slogan "Time is money!", this should be very important for your web site!Well when should we validate? There are two types of validation; client side and server side.For reference, client side means that you are depending on what browser the user is currently using. On the client side, validation is performed using JavaScript. And that can be very tricky, because some users turn off JavaScript support in their browsers before they even come to your site. If you encounter of one those users, client side validation won't help you much if you try to verify data from a form because your JavaScript code will not be executed or interpreted by the browser, means you are back to square 1. Remember, the winner of your competition entered a wrong address.This is where server side validation comes in handy. It will always work, no matter what. Of course assuming that you have access to the technology on your server. Server side validation can be done with Perl, PHP, ASP, ColdFusion, JSP and almost any other scripting language. For this tutorial, I'll use PHP. A quite popular and easy to master server side scripting language.
Category:
This tutorial follows on from "In Depth Contact Form Part 1 - The Form Itself" that describes the process involved in making the contact form as the user sees it. The second part of the tutorial details the PHP code that checks data has been entered and send an email containing this data.
Category: