php -Mail Functions

The mail() function requires an installed and working email subsystem for sending mail. The program to be used is defined by configuration directives in the php.ini file. A common pitfall is that these are not set up correctly, rendering mail() inoperable. Note that the first two directives are for use only on Windows systems; the third is for use only on Unix-type systems.
  • SMTP: The host to which to connect to send mail. Can be either a fully qualified hostname or an IP address. Used only on Windows systems.
  • sendmail_from: The email address from which sent mail should appear to have been sent. Used only on Windows systems.
  • sendmail_path: Full pathname of the mail executable to run when sending mail. This can also include command-line arguments. The default is created during the precompilation configuration: For example, if a sendmail executable is found in /usr/sbin, the default will be usr/sbin/sendmail -t -i. If no sendmail executable is found, one must be specified here. Used only on Unix-type systems.

bool mail(string recipient, string subject, string message, 
 [string extra_headers], [string extra_arguments]) 
recipient
Address of the recipient
subject
Message subject
message
Body of the message
extra
Extra headers for the message
extra_arguments
Extra arguments for the underlying mail program
Sends a message by email.


$address = 'testen@example.net';
 $subject = 'This is a test'; 
$message = 'Hi there, This is a test message. ';
 mail($address, $subject, $message); 

Why NoSQL?

Application requirements have fundamentally changed, and traditional RDBMS technology has failed to keep pace. As a result, the use of NoSQL technology is rising rapidly. Massive change is underway, disrupting the database status quo. Download this white paper to learn the megatrends affecting the database industry, how the convergence of these trends is creating new requirements for data management, and why NoSQL databases are better equipped to meet these requirements.

Mobile apps are all the rage these days but it's easy to get caught up in all the bells and whistles which you can use and lose sight of the core design process. In this you'll learn about seven design mistakes to avoid when creating apps.

Microsoft’s adCenter Keyword Generation Tool

Microsoft’s adCenter Keyword Generation Tool generates keyword suggestions based on a
search term or website you enter.
Entering a keyword in the search bar will return data that is divided into two tabs: Contains
Term and Similar Terms. The Contains Term tab includes search phrases that contain the
keyword you provided.


The Export to Excel option allows you to pull the collected data into a spreadsheet. Although
the CTR% (click-through rate) and CPC (cost-per-click) columns are intended for paid search
customers, they can also provide some indication of SEO value. You can multiply the CTR
times the search volume to get a sense of how many clicks a high-ranking paid search result
might get (comparable organic results will get six to eight times more clicks), and the CPC
provides some indication of the competition for ranking on the term.


Microsoft’s Bing search query database.
This tool is useful in generating keyword suggestions based on a keyword you
are targeting or on your site’s URL. You can also enter your competitor’s URL and see what
the keyword suggestions are for their site.

The adCenter Keyword Generation Tool is free, although you do have to create an
account with Microsoft adCenter and provide credit card information in the event that you
advertise on the Microsoft network

most influential tag in SEO

Meta keywords tag is not the most influential tag in SEO. But
it won’t harm you to optimize yours. Here’s a quick-and-dirty method that you can use:

• Go to the Keywords Worksheet that you compiled in your Prep month, and look
through your flagged keywords.
• For each landing page, decide which of the flagged keywords you think are relevant. Insert them into the Meta Keywords Tag column of the Site Optimization
Worksheet.
• Add any keywords that didn’t make the flagged list but that you think are
appropriate and relevant.
• For each landing page, add your company name, location if applicable, and any
common alternate spellings or misspellings you can think.

Try these editorial strategies for making your text changes:
• Swap out a specific word for a top-priority keyword every time it appears.
• Swap out a graphic containing a keyword for text.
• Spell out an acronym (at least in its first appearance on the page).
• On a case-by-case basis, swap out less-effective generic terms for keywords.
• Make sure your company name exists in text form once on every page.
• Include keywords in links wherever possible.
• Add keyword-rich captions to photos.

most important aspect of ranking

Offpage optimization is THE most important aspect of ranking well in  ANY search
engine, period. It's critical you know this. For offpage optimization...
* You must have links pointing to your website.
* These links must include your main keywords in the "anchor text".
* It's best to get links from the exact same websites that the top ranked websites
have their links on.
* Try to get links from as many different IP  Addresses as possible.
* It's best to have close to the same % of links containing the specific keyword
you're trying to rank well for, as the top ranked websites.    Shows you
this. In order to get links to your website, you can trade links with other people
buy sending link requests.
* You can also buy text links from the places I mentioned
* You can write articles and submit them to websites. Include a link to your website
in the footer of your article.
Onpage optimization is still important,

Optimize ranking Web Page Tags and Content

You can make this complex effort easier
for a search engine robot by providing it with hints as to what you are all about. This
is where meta tags, page titles, page content formatting, and the words on the page
itself come into play. In the end, the game is all about the search engines understanding
your site well enough to deem its content to be relevant when someone searches for
keywords and phrases related to your site.

You’ll spend these two days understanding the importance of tags and content,
and auditing and documenting how your website is doing (are you missing tags, do you
have page titles and descriptions, is your content formatted correctly, and so forth).
Here are a list of variables that are, or were, important for SEO effectiveness:
Website Meta Tags, Meta Keywords, DescriptionThe search engines have gotten smart
to the fact that many sites simply stuff their meta tags with keywords and descriptions
regardless of relevance to the content on the page. Therefore, these options have lost
their weight in the page-ranking algorithms. Sure you should have these on your pages;
just don’t expect magical results after you are finished putting meta tags on all your
pages. You’ll have to do more.

Text and Image Formatting (Text Types and Alt Tags)In the body of the page itself,
we use various text types (H1 headings, HTML tags, bold text, and so forth) that continue to remain important and are ranked higher than normal text on a page. It is
important to make judicious use of heading tags and bold text when using your most
relevant keywords and content descriptors on your pages.

php best tutorial-php variables

PHP automatically creates variables for all the data it receives in an HTTP request. This can include GET data, POST data, cookie data, and environment variables. The variables are either in PHP's global symbol table or in one of a number of superglobal arrays, depending on the value of the register_globals setting in your php.ini file. 
 
 
$_GET
GET-method variables. These are the variables supplied directly in the URL. For example, with http://www.test.com/page.php?a=21&b=22, $_GET['a'] and $_GET['b'] are set to 21 and 22, respectively.
$_POST
POST-method variables. Form field data from regular POST-method forms.
$_COOKIE
Any cookies the browser sends end up in this array. The name of the cookie is the key and the cookie value becomes the array value.
$_REQUEST
This array contains all of these variables (i.e., GET, POST, and cookie). If a variable appears in multiple sources, the order in which they are imported into $_REQUEST is given by the setting of the variables_order php.ini directive. The default is 'GPC', which means GET-method variables are imported first, then POST-method variables (overriding any GET-method variables of the same name), and finally cookie variables (overriding the other two).
$_SERVER
These are variables set by your web server. Traditionally things like DOCUMENT_ROOT, REMOTE_ADDR, REMOTE_PORT, SERVER_NAME, SERVER_PORT, and many others. To get a full list, have a look at your phpinfo( ) output, or run a script like the following to have a look:
<?php
  foreach($_SERVER as $key=>$val) {
    echo '$_SERVER['.$key."] = $val<br>\n";
  }
?>
$_ENV
Any environment variables that were set when you started your web server are available in this array.

Web-Based MySQL Administration

Web-Based MySQL Administration

At http://phpwizard.net/phpMyAdmin you will find a PHP Web application that can help you manage MySQL. It enables you to manage a MySQL database using a browser and makes administrative work much simpler.

BlueSQLFree web based Database management. 



After you have installed PHP and MySQL, you are ready to install phpMyAdmin. The work done while preparing for IMP has also prepared the system for phpMyAdmin. You do have to edit one of the . php3 files in phpMyAdmin to enter the MySQL database name and password.
With phpMyAdmin, you can create and drop databases and tables. You can also add and remove fields and perform other administrative chores.

Navicatanother option,
I have found phpMyAdmin to be very useful when trying to create or delete tables. After you have filled out a form that describes the table, it generates the SQL for you. You can use this information to create script files for later use.
For now, phpMyAdmin has some bugs. I have had it crash on me several times. However, its usefulness is good enough for me to ignore the occasional crash.
From a security point of view, phpMyAdmin is terrible. After it is installed, everyone who uses that Web page has unrestricted access to the MySQL database. I strongly recommend that you do not put your server on the Internet with phpMyAdmin active. If you do, you must configure your Web server to serve only the phpMyAdmin Web pages to your local network. You should also protect the Web pages with a password. Be careful!

Adminer

Open Source db manage tool.

HeidiSQL

Open Source 
HeidiSQL is a  Windows based interface for MySQL databases

make website search engine friendly

Website Submission the most important  process of web promotion of any website.


Facebook, Twitter, Pinterest, YouTube, and Google+,facebook page creation,dmoz listing-
This is increase traffic and  visitors to the targeted key place.


Add  Content to article Network.

Make  provide quality content to  improve your rankings.

Make a beautiful website and friendly interface.

Add small images for less loading time.

Add sitemap for the website.

Additional SEO tips-increase traffic,ranking

quality content
Search engines see quality contentand love it.

Keyword research
Keyword research helps you strategically create your site fast listing.
keyword research can help you tremendously.You are a messenger for the
search engines, and therefore, keyword research tools,directory listings,
traffic analysis software that is  price the core range of the small/big business.

Add  an alt tag on every image.

Make LinkedIn profiles -That can be optimized the search.
Make Facebook Pages -That can be optimized for search.
Google+ It helps for getting  visitors.



Article exchanges-
You publish  article on  many site. your article on the top
ten website, with a link back to your site.

Make Each page has a good  meta tag.


Find relevant text & links which Helps engines to indexing.

GET Linls and visitors
Review Posting
Blog commenting
Social Bookmarking Submission
Article directories
Video Submission
Forum posting
Rss Feed Submission
Article submission sites list
Fast Load time
internet users  feel frustrated as they wait for page to load.
Add smaller images for fast load.

built  a powerful Networks
connect with many ppl,website,add Twitter as Twitter tool.