Re: [PHP] How to connect Excel as a database from mysql

2001-09-10 Thread bard
nope. go with COM. On Mon, 10 Sep 2001, Ing. Lalka Peter wrote: > Try ODBC connection... > - Original Message - > From: "Balaji Ankem" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Monday, September 10, 2001 1:00 PM > Subject: [PHP] How to connect Excel as a database from mysql

Re: [PHP] multiple & array problem

2001-09-09 Thread bard
; > I haven't used explode for a while, but I believe it creates an array? you want to turn the array into an html select box? that would be this... $wyp_value HTML; } ?> have fun! I hope I understood the question. =) Cheers, Bard > > > Thank yo

[PHP] Re: Lists are back up

2001-06-18 Thread bard
ditto that. On Mon, 18 Jun 2001, John Donagher wrote: > > Any chance we can get the [LISTNAME] subject prefixing so all my filters > don't break? :) > > John > > On Mon, 18 Jun 2001, Rasmus Lerdorf wrote: > > > We have re-enabled the PHP mailing lists. They are now running from a > > tempora

Re: [PHP] Hello! PHP

2001-03-16 Thread bard
If you want to e mail me privately I'll go into greater detail. But, to be brief, let me just say this. DON'T DO IT. Use jsp or python or anything else that talks to java. I've tried every available permutation of php/java on SEVERAL different plat- forms with simlilarly bad results on all of t

Re: [PHP] url hide

2001-01-22 Thread bard
If you're using apache, try mod_rewrite. I'm pretty sure you have to run something on the server side to do this. JavaScript runs client-side and will therefore be useless. Cheers, Brad On Mon, 22 Jan 2001, AJDIN BRANDIC wrote: > Perhaps not related to php but I was wandering, is it possible

Re: [PHP] Why won`t this work??

2001-01-21 Thread bard
On Sun, 21 Jan 2001, Alexander Wagner wrote: > [EMAIL PROTECTED] wrote: > > Hi, > > > > Can anyone tell me before I rip my hair out, why this won`t work?? > > > > if (!UN) > > { > > printf("alert('Please enter a User > > Name.');self.history.back();"); > > } > > > > TIA > > Ade > > An undefined

Re: [PHP] Why won`t this work??

2001-01-21 Thread bard
Try this... alert('Please enter a User Name.'); self.history.back(); Cheers, Brad On Sun, 21 Jan 2001 [EMAIL PROTECTED] wrote: > Hi, > > Can anyone tell me before I rip my hair out, why this won`t work?? > > if (!UN) > { > printf("alert('Please enter a User > Name.');self.history.back(

Re: [PHP] Forcing renaming of download file (want output from a phpfile being saved as some particular file by browser)

2001-01-17 Thread bard
On Wed, 17 Jan 2001, Pankaj Gupta wrote: > Forcing a download is easy, but how can I tell the browser to name that file > to something particular, say data1.txt > Is there a header for that? There sure is: header("Content-disposition: filename=data1.txt"); BTW, I've been using that for a while

Re: [PHP] Modifying arrays

2001-01-15 Thread bard
try this one.. seems to easy though. Maybe I'm missing something?? Cheers, Brad On Mon, 15 Jan 2001, Catalin Borcea wrote: > How do I modify the value of the current element of an array? > > -- Catalin Borcea -- > \\\|/// > \\ - - // >

Re: [PHP] PHP vs JSP

2001-01-14 Thread bard
> I've worked on a couple of projects with JSP, and decided to use PHP to > build binarycloud. 'nuff said :) > ok, that's ONCE today.. =) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact t

[PHP] sorry, btw

2001-01-10 Thread bard
sorry, btw about my wraps. vi, pine and I are having a bit of a disagreement at the moment and I keep forgetting to hit return. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list ad

Re: [PHP] SSH file transfers

2001-01-10 Thread bard
the people who make putty (my favorite ssh client for windows) also make a command line scp program. this could be included as an exec() in a script I would think... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EM

Re: [PHP] Calling a Windows Com object or an Extended Fetch?

2001-01-09 Thread bard
Or you could just look at the phpbuilder.com column on using COM objects in php, or you could RTFM at the php.net site. just type in php.net/com and see what happens. We use php and com here a lot, and while the implementation lacks a few features of the asp/vb implementation it's handy when m