Posts

Showing posts from September, 2013

Send Twilio SMS using form in coldfusion

Send Twilio Api text messages using form.

Change reply message in twilio SMS API

Image
I am working with twilio sms api integrated with coldfusion.This is the blog for change reply message in twilio SMS API.It is very simple just make a cfm file which return xml and check return body message  like this ...

Delete multiple rows using checkboxs in PHP

Image
Last month i am working, how to delete multiple rows from mysql using php and also active or inactive multiple selected rows. This is good one example to delete, active and inactive multiple rows in mysql using javascript and php. Preview Heritages.php If you like this or this is useful for you. Please comment us. Thank You

Change value of second select box according first select box.

How to change value of second select box according first select box.manually is easy, basicaly the same thing as for the first just with a different SQL request.

Upload multiple file using jquery and Coldfusion

Image
Sorry, But i did not do something  new for upload multiple files.I modified the files according to coldfusion requirement. It may be better but currently i have not enough time for experiments for these files. I will do better in future using these files.... but until use these files. If you have any solutions for making better please give me  suggestions. Download jquery files form  http://blueimp.github.com/jQuery-File-Upload/ uploadedfiles.cfm Output :- uploadfiles.cfm   Output: upload.cfm :   After click on Addfiles.. Select all files with ctr+a with firefox..... Click Start Upload and after on finish... Congratulation files uploaded.  I hope this is useful for upload multiple files with coldfusion using jquery file upload.

Twillo SMS API Integration with coldfusion.

Twillo SMS Integration with coldfusion. First create a account with twillo.com and download library and docs for help, From here you can get AccountsID and AuthToken. Here is a example to Integration with coldfusion I hope this is useful for you. thank you

Change div color on click event

Image
Change div color after click on a link or button. Index.html You can change color of click color box Screen : For Demo  Click Here

Change sequence no of multiple options field values using Javascript and mysql using coldfusion

Change sequence no of multiple options field values using Javascript and update database field values using coldfusion I hope this is usefull for new programmers.

Create CAPTCHA or Random Word In Coldfusion.

Image
This is simple program to generate random word or CAPTCHA code in coldfusion. OutPut : -

Create Image Thumbnail in Coldfusion without losing dimension ratio.

This is simple application to create image thumbnail in ratio using coldfusion. I think this is useful for new coldfusion programmers.

Login with facebook using coldfusion

Image
Here is a example. How to make facebooklogin for a website using coldfusion?. Before start you make a account with facebook. Step 1 :  Create a app for your website using facebooklogin.here you can get app_key and secret_key. Step 2: Step 4:  You can see this screen :   Step 5:   After filling UserName and Password a screen show like this...    After click ok the redirect to logininformation:- Output in logininformation.cfm  I hope this is useful for you. if you are facing any problem write us in comment. we are happy to solve that problem.   For more details visit these links : -   http://developers.facebook.com/docs/facebook-login/   //Permissions   http://developers.facebook.com/docs/reference/login/   https://developers.facebook.com/docs/reference/api/user/

Count character of textarea using Javascript

A programe that count character for textarea. You can set th length for textarea like 500 or 1000 or as you like. For Demo  Click Here Thank You.

Creating SOAP example using coldfusion

Image
Many coldfusion programmer faces  a problem to connect SOAP with CFC. Here a example to fix the problem that explain how to connect SOAP with CFC?. ----callcfc.cfc---- <cfcomponent output="false" >      <cffunction name="getelement" access="remote" returntype="any" output="false">         <cfargument name="name" type="string" required="false"/>         <cfargument name="firstNumber" type="numeric" required="false"/>         <cfargument name="secondNumber"type="numeric" required="false"/>         <cfreturn arguments.name & " Have " & arguments.firstNumber + arguments.secondNumber & " Point ">      </cffunction> </cfcomponent>  -----Index.cfm <cfsavecontent variable="soap"><?xml version="1.0" encoding="UTF-8"?> ...

Post data by ajax using coldfusion component

Image
In this example, we are using AJAX to handle the form submission with form validations, That's insert data into database table. Output : - On click Submit button: That form post the values on update.cfc file. On Successfully Submit data Screen : I hope this is useful for new coldfusion programmers. Thank You