Hi im getting very close to solving this now. Just a few touches needed. Ok I didnt need the first query in the main page but just a link which read the id variable. I have created the link as below:
<?php echo '<a href="include/pd_more.php?pd_id='. $pdId;'">More..</a><br>' ?>
But i know the syntax is not quite right here as the page shows that the variable is correctly calling the id but it is accompanied by other html which makes me think that it has not correctly closed.
On the pd_more.php page i edited the query to just call the more column but it is still prints out the array info as shown below:
Array ( [pd_more] => will this work please work )
The script for this is below:
<?php
require_once '../library/config.php';
$result = mysql_query('SELECT pd_more FROM tbl_product WHERE pd_id = ' . $_GET['pd_id']) or exit(mysql_error());
$row = mysql_fetch_assoc($result);
print_r($row);
?>
Is there any reason why the array info is printing?
Any assistance on these two issues will be greatly appreciated.