[PHP-WIN] Warnings!

2003-01-29 Thread Anthony Judd
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

[PHP-WIN] Selected Value!

2003-02-01 Thread Anthony Judd
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)) {

[PHP-WIN] Re: Selected Value!

2003-02-01 Thread Anthony Judd
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]); }