Well you cannot fully prevent the viewing of the HTML source for a web page, any experienced web user may get the source even if you block...
Use this command to kill any process that thinks it's special and can't be killed using the task manager: ntsd -p [pid] -c
Place the following in a file titled ls.bat: @echo off dir %* /n/p or under Windows 98 since %* and /n are not supported: @echo off dir %1...
Multiplications 12 * 2 = 12 << 1 12 * 4 = 12 << 2 12 * 8 = 12 << 3 12 * 16 = 12 << 4 12 * 32 = 12 << 5 12 * 64 = 12...
<% // fetch the file String filename = "companySecret.txt"; String filepath = "C:\\"; response.setContentType("application/octet-stream");...
Cool, i will try it in MySQL
By default there is not data type specified to a variable, it takes the data type of the value assigned. e.g. $a = 10/6; here $a becomes float,...
the arguments passed are integers, but $res is casted to int.
Will return 48!
I had to write the code to get percentage every time I needed it, so I thought it'd be much better to have a function for the purpose, here's the...
Morse code is a method for transmitting information, using standardized sequences of short and long elements, for the letters, numerals,...
you'll need administrator privileges for many features!
I guess you don't have administrator privileges on the machine.
C++ in and of itself won't draw graphs, you'd need a graphics library to do something like that. Might want to take a little time looking into...
You need to enable mysql support in php.ini You'll find a entry in the extension list, just uncomment it.
Here is one http://www.nusphere.com/products/php_profiler.htm
If you want to match '\' then you need to use '\\\\'
Yeah! That's there, but then you query wont work i guess! Any solution in mind?
Well then first sort by month and then by date, I would do it in mysql this way SELECT * FROM emp_profile ORDER BY MONTH(dob),DAY(dob); /*...
Separate names with a comma.