Hello there guys. I have an application at work that is a full screen php/sql web apllication. I have a pop up window that opens a search into excel. The problem is the toolbars are not in excel. Anyway I can get this to pop up in a window with toolbars. Thanks
Tracy🙂
if($radiogo =="excel")
{header("Content-Type: application/vnd.ms-excel");
$query = "SELECT store ,date ,equipmentid ,quantity ,enteredby FROM shiplist WHERE store='$quicksearch' and quantity > '0'
ORDER BY store";
$result = mysql_query($query);
$fieldcounts = mysql_num_fields($result);
for($i = 0; $i < $fieldcounts; $i++) {
$fieldtype = mysql_fetch_field($result, $i);
echo "$fieldtype->name \t";