Yeah! I just started to master user register and log in at PHP! Hardest thing was that I needed to learn a little SQL too, well good that wasnt hard Code: CREATE TABLE iLearned ( to code varchar(30) NOT NULL, SQL :) varchar(32) NOT NULL ) Now I want to learn to make profile page! Does anyone know any good tutorials of making profile page? and if you got any tips at making profile page comment plz !
CREATE TABLE iLearned ( to code varchar(30) NOT NULL, SQL :) varchar(32) NOT NULL )
The following two programs show the advantage of wide characters over regular characters. Both copy a file, but one does it with char and the other does it with wchar_t: Code: #include <stdio.h> int main( int argc, char **argv ){ FILE *infile = fopen( argv[1], "r" ); FILE *outfile = fopen( argv[2], "w" ); char c; // char gets truncated. while( (c = fgetc( infile )) != EOF ){ fputc( c, outfile ); ...
#include <stdio.h> int main( int argc, char **argv ){ FILE *infile = fopen( argv[1], "r" ); FILE *outfile = fopen( argv[2], "w" ); char c; // char gets truncated. while( (c = fgetc( infile )) != EOF ){ fputc( c, outfile );
I tried making man pages for the new command shell I'm writing, using ms macros. The d@mn nroff program is producing undesired formatting, namely printing character sequences like ESC[32 and whatnot whenever it encouters certain macros. So here's what I'm doing now: I'm creating my own markup language that will behave the way I want. It'll be sort of like troff, but with somewhat different macros, and a lot more added to it to take advantage of the abilities of a modern terminal emulator. ...
Updated 08-04-2011 at 07:22 PM by Alexander
what are the best code related film any type of code HTML PHP anything. My top one is The Social Network and it is my Favourite film ever to be honest love it.
I know, you're shocked that I'm reading another book by The Pragmatic Programmers. This is a book about what types of things you should look at doing when you get ready to release a major software product. That should immediately alert you to what it is NOT about. This is NOT a book that will help you get through your programming homework. It will not give you insight into how to design your program, or how to work as a team. The examples are consistently dealing with huge e-tailer ...
The following is my response to this article: http://torrentfreak.com/richard-stal...ocking-110705/ The issue that is up for debate right now is whether there should be an institution with the power to immediately block websites from the entire internet if those websites are accused of violating some copyright. The easiest way to sum up is by quoting the article: "AGCOM want to make that particular job as simple as ...
Hi! Im using Valve Hammer Editor to make maps to Counetr strike. But to test play the map i must write down some codes on an empty notepad. Thats what the tutorial says. But the problem is that i cant open an empty notepad to the file. I need to open an empty notepad that sorta belongs to that file. The tutorial says that i need to right click at a special map that i need to make and press edit. But there is no edit option when i right click at the map. I think thats for windows 7 or vista and i ...