Jump to content

showing details of a row


diasansley

Recommended Posts

<a href='detail.php?id=$id'>$productname</a>

And retrieve the data for id on detail.php page.

 

detail.php

if($_GET['id'] != '') {
$id = $_GET['id'];
}
$query = "select product,date,name,price from table where id='$id'";
//Do other mysql stuff and show the records

 

This is just an example to get you started.

 

It is a open cart project!! the query data is passed to the .tpl to display.

 

 

and i have given a href as

<A href="http://localhost/upload_6dec/index.php?route=common/vodafone">details

there are various products displayed in the table. the above link appears on each row. when i click on details it should take me to that particular product detail.

 

Thanks

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.