- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 7
- Posts with Upvotes
- 2
- Upvoting Members
- 7
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
9 Posted Topics
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 … ![]() | |
![]() | Re: 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 … |
Re: 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 | |
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 … | |
Re: 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 | |
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 … | |
Re: 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 | |
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 … |