Jump to content

Recommended Posts

Posted

Hi

I am trying to build a web page where the content is generated dynamically from the link that i link to the page with.

For instance

www.mysite.com/path.php?line1=welcome to my site&line2=holidays in thailand&line3=krabi

OUTPUT

Welcome to my site

holidays in thailand

tours and hotels in krabi

Basically i need to grab certain parts of the link and use them to present content on the page, while having other static items and text on the page.

I would appreciate if someone could suggest some ready made script which can do this, i am not much of a programmer

Thanks

Posted (edited)

In the file "path.php" add the following:

<?

$line1 = strip_tags($_GET['line1']);

$line2 = strip_tags($_GET['line2']);

$line3 = strip_tags($_GET['line3']);

echo("<p>$line1</p><p>$line2</p><p>tours and hotels in $line3</p>");

?>

That would do exactly what you wanted above. I don't know of any ready made scripts for this, but I'm sure there are a few for domain parking.

Edited by Norrad
Posted (edited)
In the file "path.php" add the following:

<?

$line1 = strip_tags($_GET['line1']);

$line2 = strip_tags($_GET['line2']);

$line3 = strip_tags($_GET['line3']);

echo("<p>$line1</p><p>$line2</p><p>tours and hotels in $line3</p>");

?>

That would do exactly what you wanted above. I don't know of any ready made scripts for this, but I'm sure there are a few for domain parking.

THanks. What i also want to do is this:

www.mysite.com/path.php?line1=welcome to my site&line2=holidays in thailand&line3=krabiline4=krabiwebpage.htm

OUTPUT

Welcome to my site

holidays in thailand

tours and hotels in krabi

Click **here* to see our krabi page

In the above example, the word **here** is linked to www.someothersite/krabiwebpage.htm

So basically i want it to generate a link to another site with the PHP script inserting krabiwebpage.htm string into a link and display that into the page.

Thanks for your help!

Edited by uk_falang

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.



×
×
  • Create New...