Scriptsmount a free web scripts directory provides website scripts, webmaster scripts, web directory scripts, directory scripts, php scripts, perl scripts, cgi scripts, html scripts, database scripts, asp.net scripts, form scripts, guestbook scripts for webmasters
Web Scripts :: PHP :: PHP Tips and Tutorials :: Form Processing
2.
How to use the query string in PHP
|
|
This article tells you how to pass variables to a PHP page using the query string, and how to access them from that page. Have you ever seen a URL which looked like "www.example.com/pag e.php?mode=1&style=re d"? Well, this page is being passed variables and their values through the query string, here the variables "mode" and "style" are being passed, with values "1" and "red" respectively. The question mark indicates the start of the query string and the ampersand, &, symbol seperates variable=value assignments.
Hits: 78 Rating: 0.00 Votes: 0
[Detail]
[Send URL]
Category: PHP :: PHP Tips and Tutorials :: Form Processing
|
3.
Simple File Uploading
|
|
Wouldn't it be great if you could let users add files for download on your site? Fortunately, PHP provides great functions to allow file uploading via a web browser. This tutorial is intended for those who are new to File Uploading with PHP.
Hits: 71 Rating: 0.00 Votes: 0
[Detail]
[Send URL]
Category: PHP :: PHP Tips and Tutorials :: Form Processing
|
6.
Dynamically create forms using PHP
|
|
Ok, suppose your user has to enter something for your site, mabye you have a quote database, and a user has about 5 quotes they want to add, but you only have one input box on your site, and that user isnt going to sit there re-entering stuff 5 times over and over. So what are we to do? Were going to put in some php code that will add as many input boxes as the user wants. To do this we need a do/while loop (you can use a For loop, but I prefer the do/while). Heres what we do:
Hits: 65 Rating: 0.00 Votes: 0
[Detail]
[Send URL]
Category: PHP :: PHP Tips and Tutorials :: Form Processing
|
|
|
|
|