Forum: ColdFusion Sep 24th, 2009 |
| Replies: 3 Views: 1,312 It's unique to your area. Go to job sites like Monster.com or careerbuilder.com. Search different web development languages. Does coldfusion list 100 jobs? Does php? What about .net? If you are... |
Forum: ColdFusion Sep 14th, 2009 |
| Replies: 4 Views: 1,618 Then you'll need one unique name for each group of radio buttons (each game):
<cfset i = 1>
<cfloop query="Picks">
<cfoutput>
<tr>
<td><div class="content_black">Game #Game# </td>... |
Forum: ColdFusion Sep 11th, 2009 |
| Replies: 4 Views: 1,618 Right now you only have 1 radio group with only 1 possible value. Split them up by renaming from mainloop to mainloopH and mainloopA like below:
<td><div class="content_black"><cfinput... |
Forum: ColdFusion Sep 11th, 2009 |
| Replies: 1 Views: 1,259 So you want to add a static row after the query output? Post some code to give an idea of what you are trying to accomplish. |
Forum: ColdFusion Sep 11th, 2009 |
| Replies: 1 Views: 1,163 The lock is written into the query. You'll need to check into the correct syntax for your specific database. |
Forum: ColdFusion Aug 2nd, 2009 |
| Replies: 2 Views: 1,444 Why do you need regex for this? Can you not use basic string functions like LEFT, MID, and RIGHT? |
Forum: ColdFusion Jul 21st, 2009 |
| Replies: 2 Views: 782 Wordpress is php dependent, so I'd imagine you'd need to make sure php is installed on the server. The site lists the minimum requirements to run Wordpress on a server.... |
Forum: ColdFusion May 1st, 2009 |
| Replies: 1 Views: 865 AJAX (Asynchronous JavaScript And XML) |
Forum: ColdFusion Apr 1st, 2009 |
| Replies: 3 Views: 899 Well you have to come up with some type of criteria for the script to decide which folder to choose. |
Forum: ColdFusion Apr 1st, 2009 |
| Replies: 3 Views: 899 elseif implies that you have multiple conditions to check. Example:
<cfif color is "green">
<cfset colorscheme = "white">
<cfelseif color is "blue"><!---Notice how there is a statement... |
Forum: ColdFusion Feb 25th, 2009 |
| Replies: 2 Views: 1,397 Have you added a loop to display the output?
<cfquery name="players" datasource="connsilvereagles">
SELECT *
FROM player
ORDER BY playernumber DESC</cfquery>
<cfoutput>
<table>
<cfloop... |
Forum: ColdFusion Jan 8th, 2009 |
| Replies: 3 Views: 1,424 Yeah, you don't want to prevent a page refresh. That takes quite a bit of JavaScript and quite frankly would annoy users. They don't want you to change their browsers behavior. Fix your code logic.... |
Forum: ColdFusion Jan 6th, 2009 |
| Replies: 1 Views: 844 Try the CFFormProtect:
http://cfformprotect.riaforge.org/ |
Forum: ColdFusion Dec 22nd, 2008 |
| Replies: 23 Views: 3,417 Do the customers know you are storing there credit card numbers? Do the credit card companies know about this? I think that both parties would have a problem with you storing this information without... |
Forum: ColdFusion Dec 21st, 2008 |
| Replies: 6 Views: 1,161 Yes, just open the db and save as .mdb. Then modify the DSN to reflect the changes. |
Forum: ColdFusion Nov 26th, 2008 |
| Replies: 2 Views: 1,140 The html on the page has been put together poorly. JavaScript before the doctype... Validate a page with W3C... |
Forum: ColdFusion Nov 14th, 2008 |
| Replies: 4 Views: 2,128 Have you got a coldfusion server installed. If so, which version? |
Forum: ColdFusion Oct 17th, 2008 |
| Replies: 1 Views: 1,897 Hotmail will scramble anything that is surrounded by quotes in html, so remove all single and double quotes from the email. In other words:
<a href="http://www.google.com">
would need to be
<a... |