How can you not be sending data?
The layout of your example, you would presumme it would be sending data.
If you not going to use 'post' use another 'session'.
List your code im getting tired of trying to guess what it is
Respected Sir i dont thnk my very first post was difficult to understand..!!! Now i try my best to made it more clear....!!!
<form action="add.php" method="post">
<table>
<tr>
<td>Items</td>
<td>Price</td>
</tr>
<tr>
<? while($row=mysql_fetch_array($result)) { ?>
{
<td><?= $row['Item']; ?> </td> //this will fetch Item from DB..
<td><input type="text" name="price"></td>
// in this text box user input the price..!!
<?}?>
<button type="button" onclick="return myPopup2();"><span>Add New Item</span></button></td>
// This Add New Item Button will open a popup window through which I can add new Item... and on close of pop-up window the parent page will REFRESH... So that the NEW ITEM can be Displayed in the List..!!!
Note : Add Button is not a Submit button.. it jst call a Javascript Function to open a Window..!!
Now i want to Hold the Value of Price TextBox which user input in it at time page refresh..!!
Suppose User got the page with 5 items...!!!
ITEMS | PRICE
ITEMS1 | 50 // Items are coming from db and User input the Price
ITEMS2 | 30
ITEMS3 | 20
ITEMS4 | 40
ITEMS5 | 60
ADD New ITEM (Button) // After Filling the Prices of First 5 Items,User Feels that He forgot to add ITEM 6 then he will Click on Add Item Button,a Popup Window Will Open through Which User Add Item 6 and on Close of that window... the Parent page will Refresh and Item 6 will displayed in the list..!!! But the values which User filled in Price textbox will be vanished...!!!
and I want to hold that Price Value on page refresh...!!!!
Now i hope clear Idea whta i want...??

I hope You reply with a Good Solution..!!
Thnk You Sir.!!!