I am newbie of PHP. I had a website which someone code it before. He used the htacess to exchange all of the link from dot php to dot html of website. Now i continue to write a new function.
In this new function have to create one tags display a contact number, after user click on the it will link to contact detail page and pass the contact number to the detail page also to query the suitable contact detail
Now is the problem : IF i write
<a href=/B2C/vi/Contact_detail.html?id_contact=$contact_number>$contact_number</a>
I can't $_GET id_contact because the link in href is Dot HTML instead of PHP (this link has been define in htacess and i have to follow this structre)
If i change the href link to
<a href=/blocks/vi/Contact_detail.php?id_contact=$contact_number>$contact_number</a>
The page could not found because of the htaccess file. If i remove htacess file, i have to repair all of the link inside of website. It's impossible
My question is how can i use the html link but also can pass and GET the variable from address bar after ? Does anyone can give me a suggestion. Thanks for your help
Here is my code
<?php
while ($row = db2_fetch_both($stmt))
{
$po_holder_name = $row['POL_HOLDER_NM'];
$insured_name = $row['INSURED_NM'];
$main_po_num = $row['POL_NUM'];
$pro_name = $row['PRO_NAME'];
$po_valid = $row['POL_VALID_NAME'];
$staff_num = $row['EMP_NO'];
$service_cen = $row['DIV_NAME'];
$staff_cel = $row['MOBILE_PHONE'];
echo "<tr>";
echo "<td>$po_holder_name</td>";
echo "<td>$insured_name</td>";
echo "<td><a href=/B2C/$lang/Contact_detail.html>$main_po_num</a></td>";
echo "<td>$pro_name</td>";
echo "<td>$po_valid</td>";
echo "<td>$staff_num</td>";
echo "<td>$service_cen</td>";
echo "<td>$staff_cel</td>";
echo "</tr>";
}
echo "</table>";
}
you can see contact number is an array and very difficult to save in a SESSION variable
