Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
Tony Rodskjaer #1
results page from mysql query
i have created a search page for locations by country in php and a dynamic
table on a results page.
Doing a test from the recordset details it returns the requested data, but if
I try the same from a browser after the pages are uploaded I only get a column
title and the cell where the information should be displayed is missing
completely.
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<table border="1">
<tr>
<td>area</td>
</tr>
<?php do { ?>
<tr>
<td><?php echo $row_co_set['area']; ?></td>
</tr>
<?php } while ($row_co_set = mysql_fetch_assoc($co_set)); ?>
</table>
</body>
</html>
<?php
mysql_free_result($co_set);
?>
Tony Rodskjaer Guest
-
Need help with loading MySQL results into a query
Hello, I need some help figuring out why my tree component isn't being populated with my MySQL results. I have a table of categories: ParentID -... -
mysql query with duplicate results
I have a db that someone else set up that I am querying. It should have been set up to use a couple of different tables... one for clients and one... -
Cached page and query results, help!
I have a frameset and on one frame I have a CFGrid. When I click on an entry in the grid, that same frame replaces itself with the record detail.... -
newbie: MySQL query results
I need to create and sort a 2-d array of query results. I think I understand the concepts for everything except how to put the results into the... -
SQL Query - Results from another PHP Page ?
Can I store this PHP code in another page, then refernece it on multiple pages using Require or Include ??? //results from sql query for ($i=0;...



Reply With Quote

