I am getting the following errors: Could Some one please enlighten me as to
what
is wrong. I suspect it is something to do with php ini.
I am running win2k with iis, isapi
Warning: Unknown(C:\Inetpub\wwwroot\resume\product_listing.php): failed to
create stream: No such file or directory in Unknow
I am trying to display the current database value as SELECTED in a combo
box. Any ideas why this isn't working. (ID is being sent)
Any help is appreciated..!
function retrieve_category()
{
$cat = mysql_query("SELECT category_id FROM category");
while ($current_row = mysql_fetch_row($cat))
{
i have also tried:
function retrieve_category()
{
$cat = mysql_query("SELECT category_id FROM category");
while ($current_row = mysql_fetch_row($cat))
{
$row = $current_row[0]; //changed here
if ($row == $id)
{
printf("%s\n",$current_row[0]);
}