YS Tip Quarterly

Newsletter

issue 2

Rss Feed

 
 

Networking Magic

Increase Your Traffic and Revenue Too!

Start a  HubPage, where you can submit articles you love — for free!  Earn royalties and commissions

  • Sign up  Absolutely free and takes just seconds
  • Create a Hub (your own Web article) quickly and easily
  • Make money when visitors to your Hubs click on ads

Sign up to HubPages and start earning today!

 

Create Your Own RSS Feed

Ask the Experts
   

Open Discussion

Google Chrome OS - What do you expect?

What do you think?

 

Show your Employees Some Appreciation

An Inside Look at an Entrepreneur (70 E-Stories)

Latest Post

   

Processing form data with PHP

Create a simple HTML form to collect the data. process.html

<html>
<head><title>Test Page</title></head>
<body>
<h2>Data Collection</h2><p>
<form action="process.php" method="post">
<table>
<tr><td>Name:</td><td><input type="text" name="Name" /></td></tr>
<tr><td>Age:</td><td><input type="text" name="Age" /></td></tr>
<tr><td colspan="2" align="center"><input type="submit" /></td></tr>
</table>
</form>
</body>
</html>

Now lets create process.php to use the data from the HTML form we made.

<?php
print "Your name is ". $Name;
print "<br />";
print "You are ". $Age . " years old";
print "<br />";
$old = 25 + $Age;
print "In 25 years you will be " . $old . " years old";
?>

Upload both files to your server -- Link the html file to any web page

<a href="http://www.yoursite/process.html">

Enter</a>. 

You're done.

 
Technology Product Corner SEO Hot Tip What I'm Tweeting

Include a site map page

By Matt McGee

Spiders can't index pages that can't be crawled. A site map will help spiders find all the important pages on your site, and help the spider understand your site's hierarchy. This is especially helpful if your site has a hard-to-crawl navigation menu. If your site is large, make several site map pages. Keep each one to less than 100 links. I tell clients 75 is the max to be safe.

Stokes Choice-Suggested Reading

© Copyright YS Auxiliary Service.  Designed by ysdata.com

Privacy Policy