Jump to content

ZoorBIS

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Everything posted by ZoorBIS

  1. FIXED IT SOLUTION WAS SIMPLE Do not not hit the refresh button, else it will not work.
  2. Hi, Can someone please help. I am trying to export mysql to excel, I have completed the tutorial and all works fine except for the end the headers. I get no errors or warning just the contents of the file is diplayed in the browser. I have tried many different headers for excel from google. However none seem to work. Here is a simple file i have been trying to get to work <? $filename = "aaa"; $ctype="application/vnd.ms-excel"; header("Pragma: public"); // required header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("Cache-Control: private",false); // required for certain browsers header("Content-Type: $ctype"); header("Content-Disposition: attachment; filename=extraction.xls" ); header("Content-Transfer-Encoding: binary"); Echo"Car Type,Car Model,Number of Cars\n"; Echo"Mazda,323,5\n"; Echo"Mazda,6,4\n"; Echo"Mazda,MPV,6\n"; ?>
  3. Hi all, Am having trouble trying to find a php function to check a number. Have tried is_integer and is_int What is the best way of checking / validating number. The numbers can be anything like 1 1.22 3.333 3 4
  4. Hi need little help. Beginner to PHP just wondering if "->" is the same as "=" If not could some please explain to me what it is. An example in .net or java to explain would b e great.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.