I have a page which reads content from a database and display its result.
<?php
include ("databaseconnections/conx_stampsforsale.php");
$sql = mysql_query("SELECT country, description, price FROM stampsforsale");
if (!$sql)
die ("Error Displaying Data. " . mysql_error());
else
{
echo ("<table><tr>");
$count = 0;
while ($row = mysql_fetch_array($sql))
{
$target_path = "stampsforsale/" . basename($row['country'] . ".jpg");
echo ("<td><a href='" . $target_path . "' target='_blank'><img src='" . $target_path . "'width=150 height=100></a><br />" . $row['country'] . "<br />" . $row['description'] . "</br>" . $row['price'] . "<br /><br /></td>");
$count++;
if ($count % 3 == 0)
{
echo ("<tr>");
}
}
echo ("</tr></table>");
}
// end of displaying data
?>
The above code works fine and it loads inside a the main section on my web page as follows: index.php?mC=stampsforexchange.php.
In order not to get a huge number of results I am planning to put the above code inside a function and then set the stampforexchange.php page with flags for each country so that when a particular country is clicked only stamps from that country are shown. The following is the above code revised into a function.
<?php
include ("databaseconnections/conx_stampsforsale.php");
function getCountryStamps($country)
{
$sql = mysql_query("SELECT country, description, price FROM stampsforsale WHERE country = $country");
if (!$sql)
die ("Error Displaying Data. " . mysql_error());
else
{
echo ("<table><tr>");
$count = 0;
while ($row = mysql_fetch_array($sql))
{
$target_path = "stampsforsale/" . basename($row['country'] . ".jpg");
echo ("<td><a href='" . $target_path . "' target='_blank'><img src='" . $target_path . "'width=150 height=100></a><br />" . $row['country'] . "<br />" . $row['description'] . "</br>" . $row['price'] . "<br /><br /></td>");
$count++;
if ($count % 3 == 0)
{
echo ("<tr>");
}
}
echo ("</tr></table>");
}
// end of displaying data
}
?>
And this is the html part where I am trying to call the function:
<td><a href="index.php?mC=getCountryStamps(Malta)"><img src="flags/malta.gif" width=100px height="67px" /><br />Malta</td></a>
However I am getting the following warning message:
Warning: include(getCountryStamps(Malta)): failed to open stream: No such file or directory in C:\xampp\htdocs\stamps\index.php on line 21 Warning: include(): Failed opening 'getCountryStamps(Malta)' for inclusion (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\stamps\index.php on line 21
Can someone please point in the right direction as I am stuck with this one?
Thank you in advance.