www.PHPBuddy.com
 PHP Function Lookup:
 
Categories
PHP Quick Start
PHP Installation
PHP Articles
PHP Scripts

Top Rated Articles 

Site Related
Submit Articles/Code
Contact Us
Instant cash loans, cash advance online same day

   Home                   Article Added on: May 3, 2002
QueryStrings

Overview: Query strings are a way to pass information with a link (url). Let's learn how to use query strings to pass information between PHP pages.

Q: What are querystings
Well querystring's are nothing but ordinary urls that have extra info (data) after the file name (Starts with a ? mark) basically A query string is the extra portion of the URL that appears after the question mark in a URL.

A sample Query String url from PHPBuddy http://www.phpbuddy.com/sub_articles.php?other_articles=10

To explain you I will take an example, we will create 2 pages the first page will have links with query string and the second page with process the info in the query string.

pageone.htm View Sample Output


<html><body>

<a href=page_two.php?link=one>One</a>
<a href=page_two.php?link=two>two</a>
<a href=page_two.php?link=three>three</a>

</body></html>


In the above example we have created 3 hyperlinks with querystring "link=one", "link=two", "link=three" now we will create page_two.php where we will retrive the contents of that querystring.

page_two.php

<?php
$link = $_GET['link'];
echo "You have clicked $link";
?>

    Send this Article to your Friend!
Your Name Friend's Email
 
Rate this article:  Current Rating: 4.40
  Poor    Excellent     
          1     2    3    4    5

 

Home | Privacy Policy | Contact Us | Terms of Service
(c) 2002 - 2019 www.PHPbuddy.com Unauthorized reproduction/replication of any part of this site is prohibited.