Question : How do I create a drop-down in MS Excel that allows a user to select a file path

How do I create a drop-down in MS Excel that allows a user to select a file path ?  I want the user when he goes into a column called file name to have a drop down or some type of enabler that will allow the user to see all the available files/paths on his pc.  The file name that he/she selects will be the value thet ends up in the current cell.  The value will be the full path of the file.

In addition I want the cell to display within Excel as a link and when clicked on the file will open..

Answer : How do I create a drop-down in MS Excel that allows a user to select a file path

Try something like this

Assuming shopping cart table name is 'shopping_cart' and assuming you have the db declared.
1:
2:
3:
4:
5:
6:
for ( $counter = 0; $counter <= (count($array)-1); $counter++) {
mysql_query("INSERT INTO shopping_cart
(qty, name, item_id, price) VALUES('".$array[jcart_item_qty][$counter]."', '".$array[jcart_item_name][$counter]."', '".$array[jcart_item_id][$counter]."' ,'".$array[jcart_item_price][$counter]."' ) ") 
or die(mysql_error());  

}
Random Solutions  
 
programming4us programming4us