Re: [PHP] Store/Retrieve Word Documents in MySQL/PHP?

2002-06-11 Thread Brad McCrorey
This raises an interesting question (at least to me). I've had problems like this before and had to hunt high and low for the mime type for a file. Does anyone know of a listing for mime types (besides going through the built-ins in the browser). Seems like a really handy resource. File it

Re: [PHP] Store/Retrieve Word Documents in MySQL/PHP?

2002-06-11 Thread Brad McCrorey
Aha! Nice one. thanks for that! Miguel Cruz wrote: I usually just grep through the one that comes with Apache; it's fairly thorough. You might find it in /usr/local/apache/conf/mime.types miguel On Wed, 12 Jun 2002, Brad McCrorey wrote: This raises an interesting question (at least to me

Re: [PHP] php's variables javascript

2002-05-27 Thread Brad McCrorey
Or something easier... ? $size = 222; print HTML script language=JavaScript width = $size; /script HTML; ? Just make sure the HTML; bit is all the way on the left margin, regardless of tabstops in your code. cheers, Brad Boyan Nedkov wrote: Try something like that: ? //$size =

Re: [PHP] stupid error, please kick me (and send me a solution)

2002-06-03 Thread Brad McCrorey
Please note that this only neccesarily applies to MySQL. I've run into a lot of problems by assuming double-quote syntax with postgres and mssql. A better solution is to stop writing your own queries and use an abstraction library. Cheers, Brad Sqlcoders.com Programming Dept wrote: Hiya,