What programming languages do you know
I know a fair amount of PHP
I'm starting to understand javascript but I still need a reference for a simple code
I can write simple programs with C++ without looking at other codes
Example of my simple script of C++
#include <iostream>
using namespace std;
int main()
{
string name;
cout << "What is your name: ";
cin>> name
cin.ignore();
cout << "Hello "<< name;
cin.get();
}
Here's something more advanced
http://www.harmor.zeeblo.com/cpp/