Monday, November 1, 2010

Senior web designer

Employer Tw Gates


Job Title Senior web designer

Country Egypt

Job Category Web Designer

Job Type Full Time

Description •Manage time effectively by working on both facets, web designing and web description. •Develop our web applications using ActionScript, Flash, XML, XHTML and CSS. •Design websites that are easy and effective to use. •Advising our company on changes for improvement in website layout and making the website more user friendly. •Consult and discuss with our company about various aspects of website construction. •Designing a draft site that we can view and analyze for approval.

Qualifications Using the following tools visual studio themes and skins · Photoshop · Flash · Swish · Max · Dreamweaver · Microsoft expression blend Requirements: · Css · Action script · HTML and DHTML · Java script · Xaml · xml

Gender Any

Education major Computer Science

Experience 3 - 5 Years.

Salary (L.E.) Negotiable

Job Contact Person Hager Mohamed

Job Contact Email info@twgates.com

Job-Contact Information

Web Developer

Job Code 45175


Employer Tw Gates

Job Title Web Developer

Country Egypt

Job Category Computer, Information Technology, Web Development

Job Type Full Time

Description · Knowledge of Software Engineering standards, Object Oriented Programming and coding for database applications. · Good technical documentation skills. · Expertise in C# · Good knowledge of designing tools. · Familiar with web services.

Qualifications •B. Sc. in Computer Science

Gender Any

Education major Computer Science

Experience 1 - 2 Years.

Salary (L.E.) Negotiable

Job Contact Person Hager Mohamed

Job Contact Email info@twgates.com

Job-Contact Information

PHP Syntax

PHP code is executed on the server, and the plain HTML result is sent to the browser.

--------------------------------------------------------------------------------
Basic PHP Syntax
A PHP scripting block always starts with . A PHP scripting block can be placed anywhere in the document.
On servers with shorthand support enabled you can start a scripting block with .
For maximum compatibility, we recommend that you use the standard form (

?>
A PHP file normally contains HTML tags, just like an HTML file, and some PHP scripting code.
Below, we have an example of a simple PHP script which sends the text "Hello World" to the browser:
echo "Hello World";
?>

Each code line in PHP must end with a semicolon. The semicolon is a separator and is used to distinguish one set of instructions from another.

There are two basic statements to output text with PHP: echo and print. In the example above we have used the echo statement to output the text "Hello World".

Note: The file must have a .php extension. If the file has a .html extension, the PHP code will not be execute.

--------------------------------------------------------------------------------

Comments in PHP

In PHP, we use // to make a single-line comment or /* and */ to make a large comment block.




//This is a comment
/*

This is
a comment
block

*/

?>