Posted by merci.u on July 14, 2010 at 10:27 am

The style and layout of a curriculum vitae (CV) in English is often different to in other languages. These steps explain how to write a standard English CV
Read the rest of this entry »
Archived under Uncategorized
Posted by admin on July 9, 2010 at 10:48 pm
$_GET is a variable used to gather values from a form.
You may also wish to read the lesson on the $_POST variable
The $_GET variable is sent from the form, with a maximum allowable size of 100 characters.
Let’s create a simple form, which will send the information using the PHP $_GET variable: Read the rest of this entry »
Archived under Uncategorized
Posted by admin on July 9, 2010 at 10:27 pm
The for loop is used when you need to execute the same code a predetermined number of times.
For more PHP loop examples, see:
PHP Foreach Loop
PHP Do While Loop
PHP While Loop
For Loop Syntax
for ( expression 1, expression 2, expression 3){
do this;
}
The for loop will first execute “expression 1″. Once it has done that “expression 2″ will be evaluated, and if it is TRUE, then “do this” is executed. The real loop begins now as “expression 3″ is then executed, “expression 2″ is evaluated, “do this” is executed… Read the rest of this entry »
Archived under Uncategorized
Posted by admin on July 9, 2010 at 10:24 pm
A filter, rightly named, does exactly that- it filters data, usually received from the end user.
For example, if you have a form that requires a user to input their email address, a filter can accept an email address while not accepting anything that does not look like an email address. Read the rest of this entry »
Archived under Uncategorized
Posted by admin on July 9, 2010 at 10:20 pm
Using the fopen() function, we are able to open a file, assigning ourselves certain permissions to that file. However, we use the fwrite() function to properly write data to any given file.
As with any other file manipulation function, we must first open the file before we can write to it. (For more information, see fopen) Read the rest of this entry »
Archived under Uncategorized
Posted by admin on July 9, 2010 at 9:59 pm
Deleting a file using PHP is done by using the unlink function.
Such a simple function with so much power! You need to use extreme caution when using the unlink function, as you don’t want to accidentally delete a crucial file that is needed elsewhere for other functions.
You can not delete a file that is already open using the fopen() function, as it is already being used. However, once you close a file you have the ability to delete it. Read the rest of this entry »
Archived under Uncategorized
Posted by admin on July 9, 2010 at 6:57 pm
Anonymizing proxy server hide ip address and works making your web surfing anonymous.

The Hostile proxy works like spies. They spy on the dataflow between the client machine and web. Transparent proxy servers do not hide ip address because he modify any request or response more than what is required for proxy identification or authentication. The Non transparent proxy hide your ip address because he modifies the request or response more than required, in order to provide added service to its Read the rest of this entry »
Archived under Uncategorized
Posted by admin on July 9, 2010 at 6:46 pm
Windows – Find MAC Address
Problem: How do I find my IP address, MAC Address or check my network configuration?

Operating Systems: Windows XP, 2000, ME, 98, & NT
- IPConfig Utility (Windows 98/ME/XP/2000/NT)
- Winipcfg Graphical Tool (Windows 95/98)
- Getmac Utility (Windows XP)
IPConfig Utility
Most versions of Windows allow you to view detailed network configuration information with the Read the rest of this entry »
Archived under Uncategorized
Posted by admin on July 9, 2010 at 6:40 pm

NAME
Email Address and/or Personal Web Address
Campus Address: Trinity College Box # · City, State Zip Code · Phone Number
Permanent Street: City, State Zip Code · Phone Number
OR
Campus Address:
Trinity College, Box #
City, State Zip code
(Area Code) Phone number |
Permanent Address:
Street
City, State Zip code
(Area Code) Phone number |
EDUCATION:
Institution: location — Trinity College: Hartford, CT
Degree, Major (and concentration if appropriate), date — Bachelor of Arts in Political Science, Expected May 2003
Cumulative GPA/GPA in major (optional) – list if 3.0 or higher with academic honors and awards
Optional: relevant coursework, foreign study programs.
- CAREER OBJECTIVE:
- If you have a cover letter, you Read the rest of this entry »
Archived under Uncategorized
Posted by admin on July 9, 2010 at 6:29 pm
You could write the best resume in the world and be highly qualified for a job, but if your cover letter is poorly written, generic, or misguided, you can pretty much throw your chances out the window. The cover letter is your first, and sometimes your only opportunity to grab an employer’s attention and let them know why your resume is worth reading. Since there are many different ways to write a cover letter, depending on the employer and the method of transmission, for example, here are some ways to make yours stand out along with some examples you can tweak to your liking.

Before Writing the Letter
1 Update your resume. Read the rest of this entry »
Archived under Uncategorized