Jump to content

sharing variables between scripts


nevx

Recommended Posts

I need some help on this one
i have 3 pages , one is a simple html page user.html where
<form action='processform.php' method="post">
Please type your name herebr>
<input type=text name="username"><br><br>
<input type=submit value="submit"><br><br>
</form>
------------------------------------------------------------------------
<!--processform.php-->



<p>Welcome <nbsp;><?php echo($_POST['username']);?>!</P>

<br><br>
<a target="_new" href="name.php" >Show Name</a>

-----------------------------------------------------------------
<!--name.php-->

<html>
<body>
<p>Applicant : <?php echo($_POST['username']);?></p>

-------------------

why can't i see the variable in name.php any help appreciated
i'm using WAMP5 Version 1.6.1
Link to comment
https://forums.phpfreaks.com/topic/5005-sharing-variables-between-scripts/
Share on other sites

Well.. the short answer is because you're not POST'ing any data from "processform.php" to name.php.

Let's modify those 2 files really quick..

[code]<!--processform.php-->

$uname = $_POST['username'];

<p>Welcome <nbsp;><?php echo($uname);?>!</P>

<br><br>
<a target="_new" href="name.php?name=<?php echo($uname); ?>" >Show Name</a>[/code]

annnnnnnnnnnnnnnd..

[code]<!--name.php-->

$uname = $_GET['name'];

<html>
<body>
<p>Applicant : <?php echo($uname);?></p>[/code]
So let's look at the changes..

In the first file.. we have data POSTed from the previous page, and we take that data and add it to the URL of the link we're making. Data added to the URL after the .php? mark are referred to by the $_GET[]; array..

I hope this makes sense.. if you are confused about any part, please don't hesitate to ask. :)

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.