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

2003-03-18 Thread toby z
thnx rt for the reply heres my latest try at it multi_select.php $rq_skllz_ftch_qry = "select skll, skll_id, sq from tbl_lookup_skllz_qlf where sq='s' or sq='n'"; $rq_skllz_ftch_qry_rzlt_hndlr = mysql_query($rq_skllz_ftch_qry) or die("qry failed ! da tbl must xixt in da

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

2003-03-18 Thread RT
Sorry. I missed the original message but if I understand it right you want to send multiple selections from a select box to PHP. If you add [] after the name it will create an array with the data that's sent to the server ie selection 1 etc The variable $foo[0] or $_POST['foo'] would have the f

php-windows Digest 19 Mar 2003 06:43:00 -0000 Issue 1641

2003-03-18 Thread php-windows-digest-help
php-windows Digest 19 Mar 2003 06:43:00 - Issue 1641 Topics (messages 19044 through 19056): Re: multiple selections and checkboxes 19044 by: Jill.Ramonsky.Aculab.com Re: RE:[newbie]session problem 19045 by: Bobby Rahman Excel Spreadsheet as a datasource 19046 by: He

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

2003-03-18 Thread toby z
thnx a mill guyz for ur replys but im still stuck nuthing seem to be working n im closing-in on my ded line id be eterrnally gratefull if anyone could suggess an alternative to allow multi-selection of values fetched from the db the only prob is the values are aorund 40 outta which a user has t

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

2003-03-18 Thread cpdm
Also if you name your with array notation: echo(" 0) { ?> one two three --Christopher Quoting Neil Smith <[EMAIL PROTECTED]>: > Hi Toby - I can't actually fllw yr frm cs t hs n

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

2003-03-18 Thread Matt Hillebrand
No, that's XHTML that requires all tags to be closed. -Original Message- From: Neil Smith [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 18, 2003 3:22 PM To: [EMAIL PROTECTED] Subject: [PHP-WIN] Re:Subject: multiple selections and checkboxes Hi Toby - I can't actually fllw yr frm cs t h

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

2003-03-18 Thread Neil Smith
Hi Toby - I can't actually fllw yr frm cs t hs n vwls n t ! However, I notice you are not closing the tag. Maybe that would help ? AFAIK, HTML requires tags to be close. HTH - My 2c Cheers, Neil Smith. At 09:51 18/03/2003 +, you wrote: /* echo(" "); for ($count = 1; $qlfz_i

[PHP-WIN] Re: PHP 4.3.1 and Curl

2003-03-18 Thread Robert Smith
Well after after banging my head a little bit the answer fell out. With the newer versions of curl, it seems that you have to use the ca-bundle.crt file for curl to be able to verify certificates. I had to put the following statement into my scripts. curl_setopt($ch, CURLOPT_CAINFO, 'drive:\path

[PHP-WIN] software for Linux

2003-03-18 Thread Afan Pasalic
Hi guys, I'm moving from Windows (HomeSite, CuteFTP, Mascon, OutlookExpress...) to Linux and need recommendation for software to use - for easy use of PHP like I had in HomeSite. Some of friends recommended CoffeeCup HTML Editor. Switching to Eudora... Thanks for any help! Afan -- PHP Windows

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

2003-03-18 Thread WageMage
I hope I won't be stoned or burnt at the stake for suggesting this... but there are several rather nice example on how to do this in ASP... I suggest you look them up (in sites such as asp101.com or 4guysfromrolla.com) and reverse-engineer them to work in php (using the same methodology and obj

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

2003-03-18 Thread Erwan Pianezza
Hi there is commercial product out there if your company can afford it it is quite nice : http://www.zakkis.ca/products/abc_lightparser/index.php Erwan - Original Message - From: "Herhuth, Ron" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 18, 2003 2:57 PM Subject: [PHP

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

2003-03-18 Thread Chris Kranz
I've used COM objects to write to Excel spreadsheets and had no-end of problems. But never tried reading from it, well, did minimal reading to find the next blank cell, so I guess it would be much the same. It's pretty simple stuff using the COM object to access it tho. chris kranz fatcuban.com

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

2003-03-18 Thread Veselina Jecheva
Hello, Ron, I tried the same a couple of months ago, but received a message like "Cannot find the table in datasource". Obviously the ODBC driver in Win98/2000 couldn't find the sheet and resolve it as a table. Regards, Veselina At 08:57 3/18/03 -0500, Herhuth, Ron wrote: > >Has anyone successful

[PHP-WIN] Excel Spreadsheet as a datasource

2003-03-18 Thread Herhuth, Ron
Has anyone successfully used an Excel spreadsheet as a datasource? I realize that it is a flimsy datasource but I have a need to quickly and dynamically take the information stored in spreadsheets and manipulate the data and write them to a SQL database. I would be grateful for any assistance

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

2003-03-18 Thread Bobby Rahman
Hiya Futher investigation has lead me to some strange results. I checked phpinfo() and made sure "register global variables is set=on". I then used: //In db api $num_results =mysql_num_rows($db_result); $_SESSION['num_results'] = $num_results; //In second file session_start(); require_once("db_

RE: [PHP-WIN] multiple selections and checkboxes

2003-03-18 Thread Jill . Ramonsky
Sure thing. should change to wherever you want the checkbox to have a tick in it. Similarly should change to if you want it to be selected. Jill -Original Message- From: toby z [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 18, 2003 9:51 AM To: php hlp list Su

php-windows Digest 18 Mar 2003 09:51:22 -0000 Issue 1640

2003-03-18 Thread php-windows-digest-help
php-windows Digest 18 Mar 2003 09:51:22 - Issue 1640 Topics (messages 19040 through 19043): RE:[newbie]session problem 19040 by: Bobby Rahman 19041 by: Bob Hall 19042 by: toby z multiple selections and checkboxes 19043 by: toby z Administrivia: To subscribe

[PHP-WIN] multiple selections and checkboxes

2003-03-18 Thread toby z
hi guys im stuck with a rather silly thing i fetch db entries into a multi-selection list and check box when i post these thru a form i get only the FIRST selected value of the multi-select list and NO value for the check boxes im all :S:S:S heres the code if it makes any sence cnja.php ---

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

2003-03-18 Thread toby z
hi try this initiate session on proc.php // init sessn session_start(); // register session variblez ! ! ! ! session_register("SESSN"); chech for session set on sum_page.php hope thid helps good luck toby --- Bobby Rahman <[EMAIL PROTECT