OK I am trying to build an array with a sql query
this is my query
$temp_links_query=mssql_query("SELECT*
FROM test_final_link_doc
WHERE document_number = '$document_number'
");
while($row_2=mssql_fetch_array($temp_links_query))
{
$link=$row_2["link_doc"];
}
$link now be an array right? my problem is I can not use $link with the implode() function it does not return an array
I have also tried this
$temp_links_query=mssql_query("SELECT*
FROM test_final_link_doc
WHERE document_number = '$document_number'
");
$counter2=0;
while($row_2=mssql_fetch_array($temp_links_query))
{
$link[$counter2]=$row_2["link_doc"];
$counter++;
}
Still implode does not work, why?
Thanks