Posts
 
Reputation
Loading chart. Please wait.
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
7
Posts with Upvotes
2
Upvoting Members
7
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
~3K People Reached
PC Specs
Ubuntu
Favorite Tags

9 Posted Topics

Member Avatar for Gewalop

Hi, - Why use paging? It's not really cool to print out all 2000 rows you have in a table to the page, so it'd be nice to page them. Special cases? Yeah, if you have 1000 rows.. and you've set the maximum row per page to 20, well.. you're …

Member Avatar for diafol
6
2K
Member Avatar for galz1452

What? Can you please provide more information? And please use the freakin code tags..

Member Avatar for diafol
0
289
Member Avatar for kirtan_thakkar

the uploaded file size can be limited like this [CODE] <?php //Notice that 'uploaded' is the name of the upload HTML element if ($HTTP_POST_FILES['uploaded']['size']<100000){ //do your stuff here, storing.. adding to some db.. or whatever } else{ //inform the user, basically whatever you want to happen if the file was …

Member Avatar for Gewalop
0
170
Member Avatar for amit.hak50

just remove the first 3 lines edit: although I'm not sure what kind of links are you using, are they all rewritten? edit: are you using this : index.php?recent (or anything like that), if not.. then go ahead and remove the first 3 lines

Member Avatar for Gewalop
0
243
Member Avatar for Gewalop

Hi I'm trying to make an application that replaces explorer.exe (by replacing the registry key Windows NT\CurrentVersion\WinLogon\Shell) and it asks for a password, if the passowrd is correct it continue by starting explorer.exe. All is finished, the only problem is that even after starting explorer.exe by the application it only …

Member Avatar for PsychoCoder
0
87
Member Avatar for JLChafardet

You actually have one problem, your function (romano_dec) is an INT function, and it must return some kinda a value, so if you only make it void, or return anything. btw, you're code is nice and works perfect

Member Avatar for JLChafardet
0
308
Member Avatar for Gewalop

Today I had this question in my exam: [CODE]write a program in C++ that covers the next points: -a company needs to enter its employees' data into the computer -each emplyee has (ID-Job Code-Division Code-Salary) -should be done using struct -Input/Output functions should be inside the struct -use the struct …

Member Avatar for mirfan00
0
148
Member Avatar for anthony95

okay here's a little example [code=c++] #include <iostream.h> struct people { char name[20]; int ID; int Phone; }; int main() { people ppl[10]; for (int i=0;i<10;i++) { cin.getline(ppl[i].name,20,'\n'); cin>>ppl[i].ID>>ppl[i].Phone; } return 0; } [/code] you can continue from here I guess

Member Avatar for Gewalop
0
98
Member Avatar for Gewalop

Hi, I'm trying to write a code for Caesar Cipher, I don't seem to be able to get it right, I'm having no compiling errors, but there're some real logical errors, the encryption function is working fine, but I'm having troubles with the decryption. I'd love it if someone helps …

Member Avatar for siddhant3s
0
155