- Strength to Increase Rep
- +12
- Strength to Decrease Rep
- -3
- Upvotes Received
- 57
- Posts with Upvotes
- 43
- Upvoting Members
- 37
- Downvotes Received
- 15
- Posts with Downvotes
- 7
- Downvoting Members
- 14
Yet another web developer from NY. =) The name's Dan. I'm a web developer/designer. I develop web applications using open source technologies for contract work and work with Microsoft technologies at my day job. I have a bachelors in computer science,…
- Interests
- Sleeping, eating pizza, and watching Anime.
- PC Specs
- Do you REALLY care? DO you?
535 Posted Topics
Is everyone familiar with this game? Just reply with the first word that comes to your mind when you think of the last word posted. You can't respond to the post with a comment, just the word that comes to your mind. It can only be a word or a … | |
I'm curious if anyone here likes Anime. If so, what are your favorite series? | |
Re: Welcome to the TTF community Soundman! If you or anyone want to check out what others are like (or share more about yourself), please check out the post "Tell Us About Yourself" found at [url="http://www.daniweb.com/techtalkforums/thread115.html"]http://www.daniweb.com/techtalkforums/thread115.html[/url] | |
Re: [QUOTE=Aussie_Here;1213119]Something like that might work: [CODE]UPDATE dembel SET userid = 8908 WHERE [Name] = 'o''reily'[/CODE] But before doing that you need to replace the name in ur db with double apostrophe using Replace: [CODE]Replace ("o'reily", " ' ", " '' ") [/CODE][/QUOTE] Why would he replace the data with a … | |
Just curious. Hehe, I was thinking about this the other day and now I'm wondering what all you fellow coders out there have done. So what's the HARDEST most complicated program you've written? It doesn't have to be efficient, heck, it can all be spaghetti code. The hardest thing I've … | |
Re: How could you have missed Oracle?! :p Sure I'd like to help, but ODBC and Access are not database servers. Access is just a database file and ODBC is an API to a database. If you want a list of databases, visit: [url="http://dmoz.org/Computers/Software/Databases/"]http://dmoz.org/Computers/Software/Databases/[/url] Here's a list of what I think … | |
Re: Personally, I recommend you stay with Dreamweaver. It has so many features that other authoring tools don't have. Then again, all those features may be overwhelming. For people starting off, for those who don't want to be web developers/designers, I recommend FrontPage. It's very easy to use because it resembles … | |
Re: It might be because you went over their bandwidth limit or because they restrict your images to be viewed only from your site. Not from other sites. So you can't have your pages running on a different server. Depending on what free host you have, there's sometimes a trick to … | |
Re: You can create windows applications with pretty much any popular language out there, even Perl. I take it you haven't explored deep enough in the C++ realm to do any Windows programming. Visual Studio comes with premade classes where you can instantiate windows, buttons, controls, etc. You just use them. … | |
Re: You can use JavaScript to load a txt file via the XmlHttpRequest object (AJAX). You can code this yourself, or use framework like jQuery, which makes the process easily, basically use 1 line of code. For writing, since the txt file is on the server, you need a backend service, … | |
Re: Start here: [url="http://hotwired.lycos.com/webmonkey/frontdoor/beginners.html"]http://hotwired.lycos.com/webmonkey/frontdoor/beginners.html[/url] Read through it all. They'll get you started in no time. They use an excellent non-boring tone so you won't kill yourself with techno-babble. That's how I learned web design/development. Once you're done with that, go to: [url="http://hotwired.lycos.com/webmonkey/frontdoor/builders.html"]http://hotwired.lycos.com/webmonkey/frontdoor/builders.html[/url] And once you're done with that, go to: [url="http://hotwired.lycos.com/webmonkey/frontdoor/masters.html"]http://hotwired.lycos.com/webmonkey/frontdoor/masters.html[/url] | |
Re: Well, the first thing I noticed was that the image on the top wasn't loading (shinratopbannerv.2.gif). The second, your layout is being stretched out too far to the right. You make your table widths to 127%. Is there a reason? Change them to 100%. The rest are design issues. For … | |
Re: For a one dimensional array, use the implode() function: [php] $array = array('lastname', 'email', 'phone'); $comma_separated = implode(",", $array); echo $comma_separated; // lastname,email,phone [/php] | |
Re: What you're trying to do I think is impossible, within Flash anyways. If you're trying to automate this process, all from within Flash, and by that I mean, when you press a Flash button, it takes a screen shot and saves it as a PDF in the background. If this … | |
Re: I own this book. It's pretty good. [url="http://www.amazon.com/exec/obidos/tg/detail/-/0672325462/qid=1077671483//ref=sr_8_xs_ap_i3_xgl14/104-3556965-8850348?v=glance&s=books&n=507846"]http://www.amazon.com/exec/obidos/tg/detail/-/0672325462/qid=1077671483//ref=sr_8_xs_ap_i3_xgl14/104-3556965-8850348?v=glance&s=books&n=507846[/url] | |
Re: Well, this topic has been beaten to death in other forums, but I'll give it one last whirl. Here's my personal take on it, after programming in CF for 10 years. There's no easy answer. When comparing technologies, there are some things that ARE JUST NOT quantifiable, like: > Which … | |
Re: Are those suppose to be horns? They look like donkey ears. | |
Re: I think for serious Java development, you should go for JBuilder. The features are just overwhelming. If you're starting to learn Java and are writing small programs (maybe for school) you'll want a light quick editor, and in this case, JCreator. That's the editor I use for most quick Java … | |
Re: There is no problem with updating/inserting more than one record in a php page. [code] <form action="results.php." method="post"> [/code] Why do you have a period after results.php ? I hope it's just a typo in the post. As far as your other code, where in the code are you updating … | |
Re: Depends on what you're willing to do *[B]after[/B]* work hours - do you see yourself reading blogs, news sites, reading books, and doing personal projects and experiments about programming? Networking? It's hard to stay competitive by just doing a 9 to 5 job and not learning extra stuff. Tech moves … | |
Re: Yeah I remember this. It's a good thing that he pasted his code because I don't think one site exists that shows how to do this. Especially this clean. It's rare. | |
Re: [QUOTE=Patrickske]It is possible to compile PHP code into a standalone application. I've seen a media-database that was written in PHP, but all I had to to is run an EXE file. I googled a bit and this is what I found: --quote from website [url="http://www.roadsend.com/home/index.php?SMC=1&pageID=compiler"]http://www.roadsend.com/home/index.php?SMC=1&pageID=compiler[/url] -- Compile Stand Alone Applications … | |
Re: Aptana Studio 2. It's great because it supports code insight and autocomplete for JavaScript and JavaScript libraries, like jQuery. [url]http://www.aptana.com/[/url] You can also try Notepad++. It has code coloring but not autocomplete/code insight: [url]http://notepad-plus-plus.org/[/url] | |
Re: [QUOTE=Moderns;1428506]Assume we have one button that fires ajax request[/QUOTE] [QUOTE=Moderns;1428506]I am not looking for a solution to disable the button because the user might click on a link <a href='javascript:function()'>link</a> Also the user might click on others links, so it's not good solution.[/QUOTE] Not sure I follow if you first … | |
Re: Pritaeas's solution is probably the simplest. Another option is to use the browser's offline local storage. To see what I mean, check out [url]http://www.jstorage.info/[/url] However, to make it "easy to use" as you say, you would have to use a framework (use the website's jStorage library), otherwise you'd have to … | |
Re: Please also include your HTML. Where you say it fails is early enough in the code around where you're initializing your variables. Most likely you're trying setting an undefined variable and it's throwing off. Also, be aware that with parseInt, if the argument is invalid, it will throw a NaN, … | |
Re: Is your data properly encoded in XML safely? I would do a check by taking the XML document you're posting, keeping all the nodes intact, but replace all the data with simple like text. For example, replace every text node and attribute value to xxxxxxx. Try submitting that. Also, it … | |
Re: Good start, but I think you could use a better defined data structure. How about an array of objects, like so: [CODE] // Defines an array of objects: StudentList = [ {}, {}, {} ]; StudentList[0].age = "29"; StudentList[0].semesterHours = 12; StudentList[1].name = "Venom"; StudentList[1].age = "32"; StudentList[1].semesterHours = 14; … | |
Re: If hielo's solution doesn't work, paste your entire web document so we can further troubleshoot. | |
How long do you use your computer each day? | |
Re: Try going into DOS and renaming the file. I remember in Windows 95/98 if you put extended ASCII characters in filenames Windows would have a fit if you try to delete them. Usually, when you create a file in Windows, it doesn't let you put extended characters in your file … | |
Re: [CODE] <cfset yearAhead = DateAdd( "yyyy", 1, Now() ) /> <cfset dateFormatted = DateFormat( yearAhead, "mmm-dd-yyyy" ) /> <cfoutput> #dateFormatted# </cfoutput> [/CODE] | |
Re: Ahh. Too much to write. It's better if I make a tutorial out of this. | |
Re: For large blocks of HTML, I just close the php block and use regular HTML. If I have to do output of a PHP variable, I just use <?=$variable?>. | |
Re: Use the CGI.HTTP_REFERER variable. [CODE]<cfoutput>#CGI.HTTP_REFERER#</cfoutput>[/CODE] If it returns blank, it means they got to the page directly (user was not taken to it via a URL). | |
Re: You'll have an easy time learning the basics of programming with C++ than any other language I believe. I don't know of at least one good programmer that hasn't had 1+ years of the language. Java is currently more popular than C# but C# is growing. Personally, C# was easy … | |
Re: [QUOTE=ze_viru$]I've just started learning c++,so i want to take any challenge concerning c++.My question is where do i start when drafting a game program.Please ppl help me out.[/QUOTE]What type of game? The more complex your game is, the more you'll need to organize your code, so I highly recommend learning … | |
Re: Well, if you want to synchronize Access information from an Excel sheet (Which is what I think you want to do), you don't need any code. Synchronizing it with a sheet automatically sounds like a much better way to go rather than a button that does it (unless you want … | |
Re: They did already. Port 25 is now blocked ladies and gents. Cablevision (Optimum Online) a small ISP that services parts of NYC and Long Island has started to block port 25. However, Cablevision customers are angered. Unlike other companies, Cablevision has decided to block everyone instead of those who abuse … | |
Re: What do you mean "halts"? What version are you using? I'm using 3.6 of FF on Windows7 and it runs fine. | |
Re: It's a server-side language and can function on the server side like Java, PHP, Perl, Python, etc. Check this out: [url]http://en.wikipedia.org/wiki/Server-side_scripting[/url] | |
Re: Is it a ColdFusion error? Or is that message being displayed with a white background? Could also be your web server crapping out. Check your web server logs and CF logs. | |
Re: What's the code to your view/query? You're probably not joining correctly to get the results you want. | |
Re: I would write a dynamic TSQL statement(s) to loop through all the sys.tables / sys.columns across the different tables using the EXCEPT clause. You can read more about it here (which was previously discussed): [url]http://www.daniweb.com/forums/thread271165.html[/url] | |
Re: Easiest way to do this would be to replace the < > with HTML entities before they go in the <cfsavecontent>. Then reverse the process before using it in your outputted template. | |
Re: Ah, I read all that for nothing! J/k. As an aside, if you're dealing with extremely large strings, you may have to configure large character objects in your datasource in the cfadmin. |
The End.