Re: SMS messages

2011-02-11 Thread Chuka Anene
www.q-sms.org They have a very robust sms gateway. Thanks, I took a look at their pricing page and LOLed when I saw this... Q-sms offers the cheapest price in Nigeria and one of the most competitive globally... The Nigeria mention makes them immediately suspect in my mind, but I suppose

SQL / mySQL Datasource

2009-10-31 Thread Chuka Anene
Well i need step by step procedure of creating datasource of any of these two databases on my localhost. Its cracy how i still dont know how... ~| Want to reach the ColdFusion community with something they want? Let them know

XML POST with Coldfusion

2009-10-26 Thread Chuka Anene
Okay, this should be a nut-cracker on this Blog. I need someone to develop a coldfusion script that will communicate to a server/service using XML POST. Parameters are: SMS authentification username/username password/password /authentification message sender/sender

Re: XML POST with Coldfusion

2009-10-26 Thread Chuka Anene
Okay, this should be a nut-cracker on this Blog. I need someone to develop a coldfusion script that will communicate to a server/service using XML POST. Parameters are: SMS authentification username/username password/password /authentification message

Sending XML Post via cfhttp

2009-10-19 Thread Chuka Anene
cfset server=http://www.infobip.com/AddOn/SMSService/XML/XMLInput.aspx; cfxml variable=XML cfsavecontent variable=c XML EngineDocList DocVersion1.0/DocVersion EngineDoc ContentTypeSMS/ContentType SMS authentification usernameQuorium/username

Re: Splitting a list...

2009-10-12 Thread Chuka Anene
How do you split this list into equal lengths of 100? 1. make a function to split the list into the first 100 elements and the rest. 2. loop on the rest until its length is = 100 could you help me setup a loop on that? mine is not working

Re: Splitting a list...

2009-10-10 Thread Chuka Anene
Thanks. I'm not sure if your method is quicker, but it allows me to break my list wherever I need to. cfset thelist =aa,bb,cc,dd,ee,ff,uu,vv,ww,xx,yy,zz What would be the most efficient way to split the list into two lists, Try this : cfset thelist =aa,bb,cc,dd,ee,ff,uu,vv,ww,xx,yy,zz CFSET

Re: Splitting a list...

2009-10-10 Thread Chuka Anene
cfset thelist =aa,bb,cc,dd,ee,ff,uu,vv,ww,xx,yy,zz What would be the most efficient way to split the list into two lists, Try this : cfset thelist =aa,bb,cc,dd,ee,ff,uu,vv,ww,xx,yy,zz CFSET st = REFind (([^\,]*\,){6}, thelist, 1, true) CFSET list1 = mid(theList, 1, st.len[1]-1) CFSET list2 =

Splitting a list of unknown amount

2009-10-10 Thread Chuka Anene
I've been looking for this for long now. What happens when you have a list containing coma-delimited numbers, say 1,2,3,4,X Where X is a number below 5000. How do you split this list into equal lengths of 100? ~| Want to