147 Posted Topics
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member35563.html"]nathanpacker[/URL], First of all use add_slashes() to add slashes to special input characters [string] which may result in SQL Injection Attack. Second,use this style: [CODE][COLOR=#000000][COLOR=#0000bb]$query [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#dd0000]"UPDATE billingrequest SET notes = '$notes'"[/COLOR][COLOR=#007700]. [/COLOR][COLOR=#dd0000]"WHERE requestid = '$request_id'"[/COLOR][COLOR=#007700]; [/CODE] Good luck. [/COLOR][/COLOR] | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member37971.html"]Croft .L,[/URL] This is the code: [CODE] BODY {SCROLLBAR-FACE-COLOR: #D4D0C8; SCROLLBAR-HIGHLIGHT-COLOR: #999999; SCROLLBAR-SHADOW-COLOR: #999999; SCROLLBAR-3DLIGHT-COLOR: #ffffff; SCROLLBAR-ARROW-COLOR: #000000; SCROLLBAR-TRACK-COLOR: #E3E3E3; SCROLLBAR-DARKSHADOW-COLOR: #666666; } [/CODE] Good luck. | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member106028.html"]Kadaj[/URL], Try this: [URL]http://www.amqrp.org/elmer160/lessons/index.html[/URL] It would really help. Also download MPLAB from microchip's web site. And do make uJDM(microJDM) programmer for using 16f84a popular PIC. It can be easily found using google. Good luck. | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member75328.html"]Close Friends[/URL], Searching google groups for the answers is a good choice: [URL="http://groups.google.com/"]http://groups.google.com[/URL] | |
Re: Hi dss, Search the sourceforge website at [URL]http://www.sf.net/[/URL] and you'll be presented with a bunch of free/open source online text editors. Good luck. | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member108281.html"]wheelz[/URL], You should check the input with While loop.It's something like this: [CODE] while((cin >> letter) != '0') { Your switch statement; And so... .; } [/CODE] Good luck. | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member104137.html"]jan1024188[/URL], I'm also a newbie in python.But explain more on your code,so that I can help you. Good luck. | |
Re: Hi gampalu, [URL="http://c-faq.com/%7Escs/cclass/"]http://c-faq.com/~scs/cclass/[/URL] [quote]The notes on these pages are for the courses in C Programming I used to teach in the [URL="http://www.eskimo.com/%7Escs/expcoll/"]Experimental College[/URL] at the University of Washington in Seattle, WA.[/quote] This is the first lines of that page. Good luck. | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member107226.html"]govinda.attal[/URL], This means nothing. | |
Re: Hi all, These would help you: [URL="http://www.freeprogrammingresources.com/"]http://www.freeprogrammingresources.com/[/URL] [URL="http://www.tizag.com/"]http://www.tizag.com/[/URL] Good luck. | |
Re: Hi all, Try this: [URL]http://www.crystalspace3d.org/tikiwiki/tiki-view_articles.php[/URL] This is a game engine written in C++(a C family language). It's really powerful among available open source game engines. Good luck. | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member105991.html"]bennyzil[/URL], This would help much more. [URL]http://www.google.co.uk/search?q=java+python&start=0&ie=utf-8&oe=utf-8[/URL] Good luck. | |
Re: Hi andor, This might help!: Nineteen PIC microcontroller lessons describing it's assembly language and much more. [URL]http://www.amqrp.org/elmer160/lessons/index.html[/URL] Good luck. | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member104488.html"]chris99[/URL], Yes.Those are python libraries which you should import inorder to use them. Also the IDLE is a simple editor plus debugger,nothing more. Why you do stick to it as a complete game development environment. Good luck. | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member86653.html"]BombAppetit,[/URL] I'm also making a USB PIC Programmer.I used [URL="http://kitsrus.com/pdf/k149d_intro.pdf"]Kit 149[/URL] from [URL]http://kitsrus.com/pic.html[/URL]. It's a good programmer supporting a wide range of microcontrollers and ... .So go for it. It's an application that is installed with some PDFs describing the construction of different PIC programmers.It uses FT232BM for communicating … | |
Re: Hi all, There is a function in string.h library called [CODE]strcmp(str1, str2);[/CODE] which can be used to compare two strings against each other. It returns 0 if two strings are equal and return non-zero if they're different. Good luck. | |
Re: Hi all, Arrays are passed-by-reference as function/method arguments means that there is no need to return them with as the functions return value and their value changes as you change them in your function/method or anywhere.Arrays are unlike others which are passed-by-value. Good luck. | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member38432.html"]michael123[/URL], This is an easy task since it can be done using a property[setting a property]. [QUOTE]TextBox1.TextAlign = HorizontalAlignment.Right[/QUOTE] Good luck. | |
Re: Hi uu666, I'm not sure but as far as I know you can access physical memory when you're in real mode which there is nothing more than exact offset:segment or the reverse.But if you want to address more than the 1 MB limit of memory in 8bit real mode,you should … | |
Re: Hi VinC, [QUOTE] #include <stdio.h> int main( void) { int i; char str[ 80], str2[ 80]; scanf("%d %[abcdefg] %s", &i, str, str2); printf("%d %s %s\n", i, str, str2); system("pause"); return 0; } [/QUOTE] Use [QUOTE]system("pause");[/QUOTE] instead. | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member99415.html"]psycho^[/URL], I doesn't compile with my compiler[gcc],so I can't help you. Free is free,you can NOT complain. | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member84038.html"]Mushy-pea[/URL], This is the best guide found on the planet for linux API. [URL]http://www.advancedlinuxprogramming.com/alp-folder[/URL] Go to the folder and download all the PDFs and start learning. That's all. Good luck. | |
Re: Hi all, I'm somehow researching on how to design and program such a thing. Even I thought about hardware issue[hub/switches,routers,...] involved and how to design and program an OS for them. I just found some C/C++ libraries called pnet[libpnet] and dnet[libdnet] which can be easily found on [URL]http://www.sf.net/[/URL] Good luck. | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member89120.html"]vssp[/URL], Have you ever read the PHP Manual in LX. Image Functions section? Clarify your question to get to the right answer. Good luck. | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member47889.html"]fuehrer[/URL], if you check this code using firefox in Javascript Console,you'll figure out that it throws this error: [QUOTE]Error: event is not defined[/QUOTE] So,it won't work in firefox till you change the onbeforeunload event. Good luck. | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member102735.html"]mymirror[/URL], Please give the code so that I can help you. Also take a look at google groups. Good luck. | |
Re: Hi uu666, What is your source code?I mean what it does contain. | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member96014.html"]himanjim[/URL], These functions(read,write,close,...) are called system calls which are kernel-level file manipulation. Inorder to get information on linux system calls,search google for [QUOTE]Advanced Linux Programming[/QUOTE]. It would be found in PDF format easily. I have a project for this purpose.Tell me if you want the source code. Good luck. | |
Re: Hi JW1873, 1.The square root is returned using sqrt(); function which is in math.h library. 2.simple - True if the returned value is non-zero and False is the returned value is zero. 3.means greater than or equal to(I describe it this way:if greater than OR if equal to) 4. x … | |
Re: Hi all, I'm using Dev-C++ but it's editor is not efficient.So,I use Notepad2 which is the best syntax highlighter around. [URL]http://www.flos-freeware.ch/notepad2.html[/URL] | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member103084.html"]accioportkey[/URL], Could you tell me what "palimdrome" means? As I'm not an english native,I don't understand this word. Thanks. | |
Re: Hi uu666, This operation: [URL]http://mirror.href.com/thestarman/asm/debug/Segments.html[/URL] means: Absolute Memory Location = [B](Segment Value * 16) + Offset value Good luck. [/B] | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member84206.html"]Woobag[/URL], you should use [quote]'<?php echo $_SERVER['PHP_SELF']; ?>'[/quote] instead of [quote]'<?php echo $PHP_SELF; ?>'[/quote] There is no problem with your UPDATE statement since php echo it nicely,but you've used $PHP_SELF incorrectly. I hope this help you. Good luck. | |
Re: Hi uu666, Assembly is the language. Assembler is the machine code generator.[The program that assembles your assembly code] Good luck. | |
Re: Hi all, I want to introduce an interesting new scripting engine for C++ which outputs HTML.It's called C++ Server Pages. The micronovae Definition for C++ Server Pages: The power of C++ brought to the web! C++ Server Pages is the most powerful web engine ever, enabling C++ programmers to build … | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member102593.html"]Silkyneville[/URL], Are you talking to yourself in this forum??? | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member76965.html"]msvinaykumar[/URL], I don't know what you mean but take a look at: [URL]http://sourceforge.net/projects/mysql-python/[/URL] Good luck. | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member88996.html"]uxohus2b[/URL], As new browsers do have pop-up blocker, then willing to open a new pop-up window is not good idea. Good luck. | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member99376.html"]lavin[/URL], Look at [URL="http://www.tizag.com/"]http://www.tizag.com/[/URL] and start learning HTML at first. Then go on to CSS for your HTML style and also Javascript and then PHP/ASP(.NET). First learn what you want to do. When you have the knowledge then working with a software is such an easy task because you … | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member85195.html"]SamY[/URL], What do you mean of software? | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member85195.html"]SamY[/URL], You should switch to protected mode inorder to address more than 1MB limit [upto 4GB] and to see those fancy graphics and also as [URL="http://www.daniweb.com/techtalkforums/member94656.html"]Ryu[/URL] said,you should also implement a video driver[VESA,...]. Take a look at [URL="http://www.mega-tokyo.com/osfaq2/"]http://www.mega-tokyo.com/osfaq2/[/URL]. | |
Re: Hi INI, I depends on you and how much you know these programming languages. As far as I know Assembly,Basic and C are the programming languages[tools] to implement an idea in microcontroller. If you want speed use Assembly. If you don't ave time and you want to quickly get your … | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member94802.html"]Blitzer[/URL], [code] #include <cstdlib> #include <iostream> using namespace std; int main() { char a_char[10]; cin >> a_char; cout << "As an integer: " << atoi(a_char); } [/code] I've compiled this with Dev-C++ and it worked correctly. Good luck. | |
Re: Hi [URL="http://www.daniweb.com/techtalkforums/member92479.html"]L33VaNcL33F[/URL], Search for Win32 API tutorials. This would help: [code]http://www.zeuscmd.com/[/code] Good luck. | |
Re: Hi saman, Simply. Read 8051 datasheet and also some assembly programming tutorials related to 8051/2. This might be helpful. [code]http://www.8052.com/[/code] Good luck. | |
Re: You can also use google groups.There is always many solutions to a problem. [code]http://groups.google.com/[/code] Good luck. | |
Re: Hi SamY, go to [code]http://www.mega-tokyo.com/forum/[/code] to find out more about OS Programming. And before it take a DEEP look at [code]http://www.mega-tokyo.com/osfaq2/[/code] and post anything you just don't understand here. |
The End.