tutorial530.easycfm.com
EasyCFM.COM - View Tutorial
Simple and Efficient RecordSet Paging. There are already a couple of tutorials on EasyCFM that show how to create simple recordset paging but most have them have a common factor in that they are quite inefficient. The technique they use involves grabbing all the records from the query and then looping through them using the maxrecords attribute for cfloop. This works fine if your query has a couple of hundred records but what if you were dealing with a query that had hundreds of thousands of records?
tutorial531.easycfm.com
EasyCFM.COM - View Tutorial
Tip of the Day. There used to be a tutorial on how to make a tip of the day program here. I think. It was lost when the server got hacked. I thought I would make a new one. This . Can be accomplished in many ways but here is the solution that I found. I prefer to use MySQL but any database will work. I made 2 tables. The 1st table stores . The Tip of the Day information and has the following columns. Field: totd ID, Type: tinyint(4), Attribute: auto increment, Primary Key. 32;Datasource - -. Now ...
tutorial540.easycfm.com
EasyCFM.COM - View Tutorial
Alternating Table row color. After doing some research on doing this on my own site, I thought I would show the end product to everyone at easycfm.com. This can be accomplished in as little as 1 file or as many as 3. I am going to show how to do it using an external CSS. Of course you can just use inline styles do accomplish all of this. Simple page style * * * */. Font-family: Arial,sans-serif;. Line-height: 1.166;. Hover style * * * */. Mytable tr:hover { background-color: gray; }. ORDER BY last name.
tutorial541.easycfm.com
EasyCFM.COM - View Tutorial
Backup Your MySQL Database with just ColdFusion Code. This tutorial will show you how to quickly and easily backup and restore a MySQL database using just ColdFusion scripts and avoiding having to use CFEXECUTE which is normally disallowed on shared hosting platforms. ColdFusion 8 has some handy tags that will provide database detail but what if you're running CF7? An existing database backup file held on the server. The backup may take some time to complete and you will be warned if it could not con...
tutorial542.easycfm.com
EasyCFM.COM - Learn ColdFusion Easily! ColdFusion Tutorials, ColdFusion Video Tutorials, ColdFusion Discussion Boards, Events and more!
In Search of Dynamic Dependent Lists. Example of how to dynamically populate a drop-down list from database tables based on a selection in another drop-down list. Flash forms forms not displaying. Add Update Database from a data feed. New in cfc getting headache. Problem accessing "localhost:8500" port. Hi, how can i check. Webmaster, I just read one of your tutorials, (Do you want to remember your members? Matt Tongue, 07/22/2004. RIA Forge (CF Apps). Ben Nadel's CF Blog.
tutorial544.easycfm.com
EasyCFM.COM - Learn ColdFusion Easily! ColdFusion Tutorials, ColdFusion Video Tutorials, ColdFusion Discussion Boards, Events and more!
Reading JPEG Exif data with ColdFusion and Java. How to read EXIF and IPTC data from a JPEG image. XML Document in ColdFusion. Pass variable to js alert function from cf. OT - setting up file server. SUBSTRING SPACE function need help please. Thanks for all you do for Cold Fusion, especially the free part. We'll never know how many CF programmers you've inspired and helped along. Keep up the good work. Name Witheld, 06/16/2004. RIA Forge (CF Apps). Ben Nadel's CF Blog.
tutorial547.easycfm.com
EasyCFM.COM - View Tutorial
Using Bind with CFSELECT - Part 2. We will be modifing code from Part 1 so if you need to view Part 1. To begin we must look at the form that we will use for the search screen. We will use the same method with the city dropdown but will be passing the state. Cfc:data.getCity({states},{city temp})". Store states as a temp variable this will be used to repopulate the dropdown in the formA. City TEMP = #city#. Formstates TEMP = #form.states#. City TEMP = #city#. Formcity TEMP = #form.city#.
tutorial551.easycfm.com
EasyCFM.COM - View Tutorial
How to Map Multiple Markers Using Coldfusion and Google Map. We will be building this googla Map database using MYSQL. You can use any database you like like SQL server, Dbase, or any other. Okay Let’s Get started first. We will define the table as:. CREATE TABLE `dpages` (. Did` int(11) NOT NULL auto increment,. Pagename` varchar(255) default NULL,. CatID` int(11) default NULL,. ParentID` bigint(255) default NULL,. CityID` bigint(20) default NULL,. Status` mediumint(9) default NULL,. Cfinvoke component=...
tutorial555.easycfm.com
EasyCFM.COM - View Tutorial
Using Coldfusion to Import CSV Files. Using Coldfusion to Import data into mySQL. Many times we need a quick and easy way of importing data into our website databases. The CSV file format is one of the defacto standards for moving data between databases easily. Virtually all databases allow exported to CSV format. And virtually all database support importing a CSV formatted file. So why use Coldfusion to do this mundane task? Lets set the stage:. Color,size,instock,style. Red,10,12,A. Blue,12,33,A. For t...
tutorial557.easycfm.com
EasyCFM.COM - View Tutorial
SEO URLS via ColdFusion. There's really not much to this Tutorial, as it happens to be rather straightforward and easy to implement. This is the code that you can include in your Application.cfc file, or at the top of any of your website files, or include it dynamically via the cfinclude tag. Cfset urlstring = cgi.path info. Cfloop from="1" to=#ListLen(urlstring,"/")# index="i". Cfif i mod 2. Cfset paramName = "URL." and ListGetAt(urlstring,i,"/"). Cfif cgi.QUERY STRING contains "=". Cfloop from="1" to="...
tutorial56.easycfm.com
EasyCFM.COM - View Tutorial
Make a generic email form processor. Make a generic email form processor. This code will process any form submitted and email the submitted form fields excluding the submit, the redirect, the hidden, and the required fields; to the designated recipient. For your own web site if you have multiple forms just refer the action to the place where you have the form processor. The url tag can then just have a page name you want them to go to after it is processed EX: index.html. Or The url tag is optional.
SOCIAL ENGAGEMENT