Internet Technologies Prelim Activities
Thursday, July 10th, 2008http://www.uic.edu.ph/elms/uploads/IT213-RJT1973/karlpogz.zip
^_^
http://www.uic.edu.ph/elms/uploads/IT213-RJT1973/karlpogz.zip
^_^
This is just a simple php code that i made that will auto visit your site after it loads the site simple looping actually. All you have to do is visit the link below and input your desired url to be visited please include the http:// and then leave that page active in your browser as the code needs to loop all the time. Just make sure your url doesn’t contain too much image as it lowers the process. Have fun!
Edited my previous codes. Since google must check the user if he stayed in the website for 1 minute. So i changed the timer to 1 minute. Thx borly!
Please comment satisfied users! LOL!
Can’t post the codes here since i’m using the old wordpress so please visit the other site.
Visit Click!
I used this header fill in our Data Structure.
Just post comments if you have any problems using them. I know you do. =p
#include
#include
using namespace std;
int main()
{
int limit;
cout<<"Enter Number of Inputs: ";
cin>>limit;
string name[limit];
int num[limit], max, min, ma=0, mi=0;
for ( int a=0; a!=limit; a++ ) {
cout<<"Enter Name of User: ";
cin>>name[a];
cout<<"Enter Number: ";
cin>>num[a];
max = num[0];
min = num[0];
}
for ( int a=0; a!=limit; a++ ) {
if ( max < num[a] ) {
max = num[a];
ma = a;
}
if ( min > num[a] ) {
min = num[a];
mi = a;
}
}
cout<
}