[PHP-WIN] Re: Subject: software for Linux

2003-03-19 Thread Neil Smith
I quite like Quanta as an HTML editor. Comes with mandrake and I suppose most other distros. Good luck with the move, I suspect your new home will be far more comfortable with nice extras :-) Neil. At 06:43 19/03/2003 +, you wrote: Hi guys, I'm moving from Windows (HomeSite, CuteFTP,

[PHP-WIN] Re: php-windows Digest 19 Mar 2003 06:43:00 -0000 Issue 1641

2003-03-19 Thread Neil Smith
Still, good practice dontcha think ? Same with LI tags - they can be left unclosed, but it won't validate in most HTML validators (and quite rightly). At 06:43 19/03/2003 +, Matt wrote: Subject: RE: [PHP-WIN] Re:Subject: multiple selections and checkboxes No, that's XHTML that requires all

Re: [PHP-WIN] Re:Subject: multiple selections and checkboxes

2003-03-19 Thread toby z
guyz thnx a zillion all of u its all solved n dun i skrwd my own code up fo my slf thnx again all of u eternally grateful toby .. --- Neil Smith [EMAIL PROTECTED] wrote: One more thing (dunno if it has been mentioned ) : select id=qlf_opt name=rq_qlf You have different -id-

RE: [PHP-WIN] RE:[newbie]session problem

2003-03-19 Thread Uttam
afaik, a session is handled as follows in later versions of php: 1. initiate session i.e. session_start(); this is required only if you do not have session.auto_start=1 in php.ini. 2. Add session variables to global array $_SESSION[] like $_SESSION['test']=test variable 3. Access the session

RE: [PHP-WIN] RE:[newbie]session problem

2003-03-19 Thread Uttam
a word of caution right out of manual: Caution If you are using $_SESSION (or $HTTP_SESSION_VARS), do not use session_register(), session_is_registered() and session_unregister(). another snip from manual: Use of $_SESSION (or $HTTP_SESSION_VARS with PHP 4.0.6 or less) is recommended for

[PHP-WIN] RE: Excel Spreadsheet as a datasource

2003-03-19 Thread Warren \Zeebon\ Parks
I've done kind of what your asking quite a few times. What I do is save the file as a csv. Then you can just import it right into mysql. I do this for 2 different applications that I wrote. If you need more help just ask. Warren -Original Message- From: Herhuth, Ron [mailto:[EMAIL

php-windows Digest 19 Mar 2003 19:24:10 -0000 Issue 1642

2003-03-19 Thread php-windows-digest-help
php-windows Digest 19 Mar 2003 19:24:10 - Issue 1642 Topics (messages 19057 through 19066): Re: Re:Subject: multiple selections and checkboxes 19057 by: RT 19058 by: toby z 19061 by: toby z Re: Subject: software for Linux 19059 by: Neil Smith Re:

[PHP-WIN] Calculationg lines of text

2003-03-19 Thread Bobo Wieland
When you're dealing with layout w text and images in documents on the web, where the text/images is updatable by the client, it would be nice to be able to calulate lines of text and charachters per line. Is there some way to do this in php? If not, is it possible in some other language?

[PHP-WIN] Re: [PHP] Sessions on win32, PHP and IIS

2003-03-19 Thread Diego Fulgueira
For session variables to work: Use the $_SESSION array instead of $HTTP_SESSION_VARS. Also, check your session_path (defined in php.ini, which should be under /WINNT). session_path should point to a directory where user IUSR_MYHOST has writing permissions. There, you should see a file created

[PHP-WIN] - IIS - More info

2003-03-19 Thread Diego Fulgueira
Did you checked my last message? Was it helpful? PHP under Apache exposes diferent global variables than PHP under IIS. It will be impossible for you to correct your errors without changing your code. Run phpinfo() to see what variables are available under IIS. About session variables... I