Govt. of India ITI LIMITED Job Post


Govt Job At ITI LIMITED

ITI LIMITED Job Post

ITI Limited is looking for  Professionals to be hired
 on Tenure basis for a period of Five Years :

    Mathematician
    Computer Science Engineers
    Electronics and Communications Engineers

How to Apply : Application in the prescribed format
 should be send on or before 30/04/2015 to
Chief Manager - HR (B), Network Systems Unit,
ITI Limited, ITI Bhavan, Doorvaninagar, Bangalore - 560016





View Details: http://www.itiltd-india.com/upload/careers.html

Govt job at HINDUSTAN COPPER LIMITED

Govt job at HINDUSTAN COPPER LIMITED

job at HINDUSTAN COPPER LIMITED

Hindustan Copper Limited HCL invites online applications from
 qualified and experienced Indian Nationals  for the following  posts:

    Mining : 05 posts
    Geology : 02 posts
    Metallurgy : 01 post
    Civil : 03 posts
    Research & Development : 03 posts
    Mechanical : 10 posts
    Electrical : 10 posts
    Systems : 04 posts
    Finance : 11 posts
    Human Resources : 09 posts
    Law : 01 post
    Medical & Health Services : 07 posts
    Materials and Contract : 03 posts
    Marketing : 04 posts
    Company Secretary : 01 post
    Corporate Social Responsibility : 02 posts

Application Fee :  Rs.750/- Rs.375/- for fee from SC/ST/PWD/ Female candidates
 in the form of DD in favour of Hindustan Copper Limited payable at Kolkata.   

How to Apply : Apply Online at Hindustan Copper website from 20/04/2015 to 19/05/2015 only.






View Details: http://www.hindustancopper.com/career.asp

Government Jobs Recruitment At Hindustan Aeronautics Limited

 

Government Jobs Hindustan Aeronautics Limited

Government Jobs Recruitment At Hindustan Aeronautics Limited

HAL  invites applications from following posts :

    Assistant Officer (Fire) : 02 posts
    Medical Officer (General Duty) Gr. II : 01 post
    Deputy Manager (Safety) : 02 posts
    Senior Medical Officer (Surgeon) : 01 post
    Senior Medical Officer (Medicine) : 02 posts

How to Apply : Application in the prescribed format
 should be send on or before 15/05/2015 to Dy.
Director General (Human Resources), Post Box no. 23,
 Ojhar Township Post Office, Niphad (Tal),  Nashik - 422207.



View Details:http://www.hal-india.com/CAREERS/M__206 

PHP File Upload Script


PHP File Uploading Code

Take a moment to commit the following list to memory—
it contains the variables that are automatically placed in the
 $_FILES superglobal after a successful file upload.
 The base of img1 comes from the name of the input
 field in the original form.

$_FILES[$img1] [tmp_name]. The value refers to the temporary file on the Web server.

$_FILES[img1] [name]. The value is the actual name of the file that was uploaded. For example, if the name of the file was me.jpg, the value of $_FILES[img1] [name] is me.jpg.

$_FILES [img1] [size]. The size of the uploaded file in bytes

$_FILES [img1] [type]. The mime type of the uploaded file, such as image/jpg

uploaded file by PHP code




The goal of this script is to take the uploaded file and copy it to the document root of the Web server and return a confirmation to the user containing values for all the variables in the preceding list.

Open a new file in your text editor and start a PHP block:

<?

Create an if…else statement that checks for a value in $_FILES[img1].

if ($_FILES[img1] != "") {

If $_FILES [img1] is not empty, execute the copy function. Use @ before the function name to suppress warnings, and use the die() function to cause the script to end and a message to display if the copy() function fails.

@copy($_FILES[img1][tmp_name], "/usr/local/bin/apache_1.3.26/
htdocs/".$_FILES[img1][name]) or die("Couldn't copy the file.");




 Note  If the document root of your Web server is not /usr/local/bin/apache_1.3.26/htdocs/ as shown in step 3, change the path to match your own system. For example, a Windows user might use /Apache/htdocs/.


Continue the else statement to handle the lack of a file for upload:

} else {
   die("No input file specified");

Close the if…else statement, then close your PHP block:

}
?>

Add this HTML:

<HTML>
<HEAD>
<TITLE>Successful File Upload</TITLE>
</HEAD>
<BODY>
<H1>Success!</H1>


Mingle HTML and PHP, printing a line that displays values for the various elements of the uploaded file (name, size, type):

<P>You sent: <? echo $_FILES[img1][name]; ?>, a <? echo
$_FILES[img1][size]; ?> byte file with a mime type of <? echo
$_FILES[img1][type]; ?>.</P>

Add some more HTML so that the document is valid:

</BODY>
</HTML>

Save the file with the name do_upload.php.

Creating a Php Script to Mail Your Form

Php Mail Script

According to the form action in simple_form.html, you
 need a script called send_simpleform.php. The goal
 of this script is to accept the text in
 $_POST[sender_name], $_POST[sender_email],
and $_POST[message] format, send an e-mail, and
 display a confirmation to the Web browser.
Open a new file in your text editor.
Begin a PHP block, then start building a message string:

PHP script to process the form, send the mail






<?
$msg = "E-MAIL SENT FROM WWW SITE\n";

Continue building the message string by adding an entry for the sender's name:

$msg .= "Sender's Name:\t$_POST[sender_name]\n";


 Note  The next few steps will continue building the message string by concatenating smaller strings to form one long message string. Concatenating is a fancy word for "smashing together." The concatenation operator (. =) is used.


Continue building the message string by adding an entry for the sender's e-mail address:

$msg .= "Sender's E-Mail:\t$_POST[sender_email]\n";

Continue building the message string by adding an entry for the message:

$msg .= "Message:\t$_POST[message]\n\n";

The final line contains two new line characters to add additional white space at the end of the string.

Create a variable to hold the recipient's e-mail address (substitute your own):

$to = "you@youremail.com";

Create a variable to hold the subject of the e-mail:

$subject = "Web Site Feedback";

Create a variable to hold additional mailheaders:

$mailheaders = "From: My Web Site <> \n";

Add to the $mailheaders variable:

$mailheaders .= "Reply-To: $_POST[sender_email]\n\n";

Add the mail() function:

mail($to, $subject, $msg, $mailheaders);

Close your PHP block:

?>

Measuring Social-Media Optimization

Start Social-Media Optimization to your website


If you’re participating in social media, you’re going
 to want to know how it’s working. But before
you even begin to measure your success, you need
 to know what you’re measuring it against. Define
concrete goals for your efforts. Those might be to
 increase your web-site traffic by a certain amount
each month, to increase conversion values, or some
 other goal. Whatever those goals are, use them
as a guide as you’re planning your social-media
optimization efforts.



You should first have a blog, and then track who
 is reading it. There are many good web analytics
packages that will track what the most popular
 content on your site is. You can probably also see
where those site visitors are coming from and
 how long they’re spending on your page.
This information will help you determine what
 blog entries are most successful and who is
sending the most traffic to your blog, so that you
can capitalize on that.

To find out who is linking to your site
use the following search string, replacing
yourwebsitewith the actual URL of the pages you want to
track: link:http://www.yourwebsitename.com.

Socialmedia networks require constant participation.
 And as with SEO, that means ongoing efforts —
 daily. Integrate your social-media optimization
 strategies into your daily SEO
workflow.

Bhargava and the other social-media experts who
 put this list together are people in the front line
of SEO and SMO social-media optimization every day.
 These guidelines will help you begin youroptimization process.
And if you follow them, you’ll be well on your way to gaining all the value
available from social networks and social media.

Best SEO Practices for a website

Best 35 SEO Practices tips for a website


Review traffic to your site using web server logs and
 third-party.
software      
Understand the content and queries that draw your traffic.

Establish base-line metrics for site traffic, and criteria for success.
Regularly monitor site traffic.
Create content specifically for SEO purposes.
Work to improve PageRank.
Submit to search engines, manually or with a submission tool.
List your site in taxonomies.
List your site in wiki articles.
Request inbound links.
Post comments and pings containing links.
Use syndication for SEO purposes.
Create a bot-friendly site.
Review your site in a text-only web browser.
Add meta information to your site.
Use text rather than graphics when possible.
Add descriptive alt attributes to your images.
Create an easily navigable site.



Keep pages between 100 and 250 words.
Keep keywords dense without stuffing.
Add keywords to <title> and <h1> tags.
Add moderate outbound linking.
Make sure to include cross links.
Deploy web analytics platform Google Analytics or WebTrends.
Avoid dubious SEO practices.
Create a clear and brief campaign plan.
Use AdWords in Conjunction with Core SEO

Use AdWords as an SEO Tool

AdWords as an SEO Tool


As core SEO becomes simply one of the tools used to
 advertise destinations on the Web, it makes sense to
supplement pure SEO with targeted CPCCost per
Clickprograms, such as that provided by Google AdWords.
AdWords should be used as an auxiliary to SEO programs,
 not as the primary focus of an SEO campaign. Attention
 should be paid to distinguishing within AdWords between
 content and search ads.





Search ads, which appear on Google search
 results pages, are generally worth paying more
for per click than content ads, which appear on
web pages enrolled in the Google AdSense program.



As an auxiliary SEO tool, the best approach with AdWords
 is oblique: don't target your primary SEO keywords
 you can rely on SEO for this as much as conceptually
 related topics that might draw visitors who might
otherwise overlook your site.


A benefit of using AdWords as part of your SEO
campaign is that it is very easy to track results because
 you know when your targets get clicked.

seo Keyword Placement tips

Keyword Placement seo tips

 

Keyword Placement

The text on your web page should include the most
 important keywords you have developed in as unforced
 a way as possible. Try to string keywords together to 
make coherent sentences.Not all text on a page is 
equal in importance. First of all, order does count:
 keywords higher up in a given page get more recognition 
from search engines than the same keywords further down a page.
Roughly speaking, besides the body of the page itself 
and in meta information, you should try to place your
 keywords in the following elementspresented roughly in
 order of descending importance:



Title: putting relevant keywords in the HTML title tag for your
 page is probably the most important single thing you can do in terms of SEO

Headers: keyword placement within HTML header styles
, particularly <h1> headers towards the top of a page, is extremely important

Links: use your keywords as much as possible in the
 text that is enclosed by <a href="">...</a> hyperlink tags on your site in outbound and cross bound link. Ask webmasters who provide inbound linking to your site
 to use your keywords whenever possible

Images: include your keywords in the alt attribute of your
 HTML image <img> tags

Text in bold: if there is any reasonable excuse for doing so,
include your keywords within HTML bold <b>... </b> tags

Web Application Concepts

Web Application Concepts-website


Session management, security considerations and
 authentication, and usability form the base of every
 Web application. Web applications aren't possible
 without proper session management. You have to
 find a way to recognize users during multiple page
 requests if you want to associate variables like a
shopping cart with one specific user. And this
 identification had better be secure if you don't want
 to have one user seeing another's credit card information.



 Indeed, special considerations are necessary for improving
 security in your applications. Even if PHP is less prone to
 crackers' attacks than other CGI environments, it's easy
 to write totally exposed applications.

You lose control over the data—as long as the user doesn't return to your site, you can't access the data. And worse, that data may be manipulated when you get it back. Ninety percent of all Web site defacing and breakings come from applications accepting tampered data from the client side and trusting that data. Do not keep data on the client. Do not trust data from the client.

If you use GET/POST, the storage isn't persistent across sessions.

If you rely exclusively on cookies, you have a problem because some users won't accept cookies—they simply disable cookies in their browsers.

The data is hard to maintain because you need to save all data on every page. Each variable needs to be URL-encoded, added to a form as a hidden field or added to the URL, or saved as a cookie. This is difficult for a single variable such as the session ID, let alone dozens of variables!

Thus, the data needs to be stored on the server. Where exactly you store it isn't all that important; it can be in a relational database management system (RDBMS), plaintext file, dBASE file, etc. Because a Web application generally already uses a relational database such as MySQL, this should be the preferred storage medium.

To associate the data with a user, you need a session identity number— a key that ties the user to his data.