I have been scratching my head about this for a long time
I am trying to parse the values from a table into another page...
is this possible?
The first page that I am parsing from looks like this...
====================================================
page 1
<?php
$link = ingres_connect (sales, ingres, ingres)
or die (\"Could not connect\");
?>
<table border=2 cellpadding=10>
<tr>
<th>vendor</th>
<th>name</th>
<th>cpu_code</th>
<th>tier</th>
</tr>
<?php
$name=$_POST[\"username2\"];
?>
<?php
$sql = sprintf (\"select distinct vendor, name_2, cpu_code, tier from price where name_2 =\'%s\'\",$name );
ingres_query ($sql);
while ($row = ingres_fetch_row()) {
?>
<?php
echo \"<tr>\";
echo \"<td>$row[1]</td>\";
echo \"<td>$row[2]</td>\";
echo \"<td>$row[3]</td>\";
echo \"<td>$row[4]</td>\";
echo \"</tr>\";
}
?>
</table>
<p>
<?php
echo \"<br>\n\";
ingres_commit();
?>
==================================================================
Is it possible to parse the values from $row[1] , $row[2] , $row[3] , $row[4]
into another page?
Please help me somebody.......