Hi.... i have tried to changed the code for the following using the migration tool... i cannot make head nor tail of it... can anyone help me with the change over to .NET C#? any help would be greatly appreciated as i am kinda lost
Administration Page
include "faq_config.php";
if (isset($category)) {
print "
$cat_name
\n";
print "FAQ Admin | Add New FAQ to $cat_name
\n";
$result = mssql_query("SELECT * FROM faqs WHERE category_id = '$category'");
print "\n";
while ($row = mssql_fetch_array($result)) {
print "
Q
$row[question]
stuarttaylor
Member
65 Points
13 Posts
Code to change,...
Aug 05, 2004 02:00 PM|LINK
FAQ Categories
\n"; print "Action: Add Category | Edit Category | Delete Category
"; $result = mssql_query("SELECT * FROM faqcategories"); print "\n"; while ($row = mssql_fetch_array($result)) { print "- $row[category]
\n";
}
print "
\n"; } mssql_close($link); ?>