php-windows Digest 22 Aug 2003 02:28:29 -0000 Issue 1881

2003-08-21 Thread php-windows-digest-help
php-windows Digest 22 Aug 2003 02:28:29 - Issue 1881 Topics (messages 21199 through 21209): Call for Authors 2 21199 by: WebDevMagazine Store array in mysql? 21200 by: Disko_kex 21203 by: Rob Adams 21205 by: Sek-Mun Wong Form data 21201 by: Muhammad

Re: [PHP-WIN] ascii to utf-16

2003-08-21 Thread Joel Rees
"Achilles Maroulis" <[EMAIL PROTECTED]> > > Is there a way to convert a string to unicode utf-16? > > Apparently not built into php, which sort of surprises me.. > > You could make one if you want, it's not hard. > ... > If you REALLY REALLY REALLY want a conversion function, I might be able >

[PHP-WIN] COM - ADODB connection...

2003-08-21 Thread Chris Kranz
so i have something like this... $xlsFile = $_FILES['fileupload']['tmp_name']; //the file we're reading is the one we just uploaded $conn= new COM("ADODB.Connection") or die( "did not connect" ); $conn->Open("Driver={Microsoft Excel Driver (*.xls)};DBQ=$xlsFile;ExtendedProperties=Excel 8.0;");

Re: [PHP-WIN] Re: how to establish relationship in Mysql

2003-08-21 Thread Rob Adams
Wow. That's nice. Never heard of that table type before. -- Rob "Ignatius Reilly" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Not so. Actually you can enforce FOREIGN KEYs if you choose the InnoDB table > type. > > Ignatius > _ > - Original Messa

Re: [PHP-WIN] Re: how to establish relationship in Mysql

2003-08-21 Thread Ignatius Reilly
Not so. Actually you can enforce FOREIGN KEYs if you choose the InnoDB table type. Ignatius _ - Original Message - From: "Rob Adams" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, August 21, 2003 5:41 PM Subject: [PHP-WIN] Re: how to establish relations

[PHP-WIN] Re: Store array in mysql?

2003-08-21 Thread Sek-Mun Wong
use "serialize". you need to create a table with 2 fields, key & value, where value is a largetext field. $str = serialize($array); mysql_query("insert into table1 (key, value) as ($key, $str)"); then you can select it back out of mysql and use $result = mysql_query("select"); $array = unse

[PHP-WIN] Re: how to establish relationship in Mysql

2003-08-21 Thread Rob Adams
"Thomas Edward Lawrence" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > May it establish relationship in Mysql as if we can establish relationship > between tables in Access ? If can , please tell me , I use php Myadmin and > EMS Mysql manager version 2.5 , thank you . > > If you're

[PHP-WIN] Re: Store array in mysql?

2003-08-21 Thread Rob Adams
"Disko_kex" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > If I have a normal array like "Array ( [0] => 1 [1] => 3 [2] => 82 )" , > and want to store the array in a mysql table and then want to use it. > How can I do? > > // jocke > There are at least two ways you can do this. If

RE: [PHP-WIN] Form data

2003-08-21 Thread John Ellingsworth
Muhammad You need to grab the variable first - register_globals is in safe mode, probably - so you should do this (you seem to be using an older, insecure method of doing it): Welcome ! Thanks, John Ellingsworth http://mail.med.upenn.edu/~jellings/ -Original Message- From: Muham

[PHP-WIN] Form data

2003-08-21 Thread Muhammad Imran
How i can process my form data, my form contain just one text input field and .php code have to show it but when i press ""SUBMIT" button my page url does not change nor the input text seen thier. my php code is : Welcome! html form just send the input text with Applicant text field dat

[PHP-WIN] Store array in mysql?

2003-08-21 Thread Disko_kex
If I have a normal array like "Array ( [0] => 1 [1] => 3 [2] => 82 )" , and want to store the array in a mysql table and then want to use it. How can I do? // jocke

[PHP-WIN] Call for Authors 2

2003-08-21 Thread WebDevMagazine
WebDevMagazine will start in September an international edition of magazine.If you want to be an author of this magazine please email to : [EMAIL PROTECTED] the folowing things: 1. Your details - name , age ,...etc 2. Your experience 3. In what topic from Web Development you want to write articles

Re: [PHP-WIN] db connection php & mssql & win2k

2003-08-21 Thread giko
thak's to all but i resolved with a dsn connection $con = odbc_connection('dsn_con','un_db','pwd_db'); and odbc function ... ? I don't know if they function fine "Stephen" <[EMAIL PROTECTED]> ha scritto nel messaggio news:[EMAIL PROTECTED] > Giko > > You will need to tell us what the error

php-windows Digest 21 Aug 2003 07:20:44 -0000 Issue 1880

2003-08-21 Thread php-windows-digest-help
php-windows Digest 21 Aug 2003 07:20:44 - Issue 1880 Topics (messages 21196 through 21198): Re: how to establish relationship in Mysql 21196 by: Alejandro C. Garrammone Re: Multiple selection in php 21197 by: Mikey Re: db connection php & mssql & win2k 21198 by: gik