RE: [PHP-WIN] Return all Tables

2003-12-12 Thread Svensson, B.A.T. (HKG)
SELECT name FROM sysobjects WHERE type = table AND the db user ID equal should be checked to Can't recall the values now since I write this at home. I can find out later on today however... -Original Message- From: Gerardo Rojas To: [EMAIL PROTECTED] Sent: 2003-12-11 20:04 Subject:

[PHP-WIN] need back up .......

2003-12-12 Thread toby z
hay guyz this is a rather quick one . are these two releases stable php 4.3.++ what ever n apache 2 ? how many buggz have you guyz encountered so far ? what kind briefly plz i guess i just got ma self in a bit of a querrel with ma god-fo-saken boss here .

php-windows Digest 12 Dec 2003 12:18:25 -0000 Issue 2038

2003-12-12 Thread php-windows-digest-help
php-windows Digest 12 Dec 2003 12:18:25 - Issue 2038 Topics (messages 22368 through 22370): Re: Return all Tables 22368 by: Gerardo Rojas 22369 by: Svensson, B.A.T. (HKG) need back up ... 22370 by: toby z Administrivia: To subscribe to the digest, e-mail:

[PHP-WIN] embedded PHP in HTML

2003-12-12 Thread Ahmad Khashan
I am trying to get this code to work: html head /head body ptrying to call PHP./p script language=php ?php echo (hello there); ? /script /body /html The PHP code is not executed. Any way to get this to work?. BTW, I can execute PHP files if i use the formaction...submit route. Many

Re: [PHP-WIN] embedded PHP in HTML

2003-12-12 Thread Piotr Pluciennik
Try this way... remove script language=php and /script html head /head body ptrying to call PHP./p ?php echo hello there; ? /body /html HTH Piotr --- Ahmad Khashan [EMAIL PROTECTED] wrote: I am trying to get this code to work: html head /head body ptrying to call PHP./p script

[PHP-WIN] querying more than one db from a php page?

2003-12-12 Thread George Pitcher
Hi, I am developing my main site to run on php/mysql (currently lasso/filemaker). I am also developing some individual sites to be hosted on the same server as my main one and I'd like to be able to update those smaller site databases when activity happens on the main site. I'm still a couple

[PHP-WIN] Re: querying more than one db from a php page?

2003-12-12 Thread Justin Patrin
George Pitcher wrote: Hi, I am developing my main site to run on php/mysql (currently lasso/filemaker). I am also developing some individual sites to be hosted on the same server as my main one and I'd like to be able to update those smaller site databases when activity happens on the main site.

Re: [PHP-WIN] embedded PHP in HTML

2003-12-12 Thread Justin Patrin
Piotr Pluciennik wrote: Try this way... remove script language=php and /script html head /head body ptrying to call PHP./p ?php echo hello there; ? /body /html HTH Piotr --- Ahmad Khashan [EMAIL PROTECTED] wrote: I am trying to get this code to work: html head /head body ptrying to call

[PHP-WIN] Not returning all text

2003-12-12 Thread Herhuth, Ron
Quick question, I have a field in MS SQL that is returning a very lengthy string of text. When the string is input it is all making it into the database, but when I return it and display the data on screen it is truncating well prematurely. Is there a setting in the ini that limits this? and if

RE: [PHP-WIN] Not returning all text

2003-12-12 Thread Zac Barton
Hey Ron try having a look at the odbc.defaultlrl setting in the ini file i have also found that putting the text column last in the select statment helps best zac -Original Message- From: Herhuth, Ron [mailto:[EMAIL PROTECTED] Sent: Friday, December 12, 2003 5:33 PM To: [EMAIL

Re: [PHP-WIN] Not returning all text

2003-12-12 Thread Frank M. Kromann
Hi Ron, If your field is of type char or varchar the limit is 255 (limited by the db library from Microsoft). If you are using the text type you can use these settings in php.ini ; Valid range 0 - 2147483647. Default = 4096. mssql.textlimit = 128000 ; Valid range 0 - 2147483647. Default =

php-windows Digest 13 Dec 2003 06:38:04 -0000 Issue 2039

2003-12-12 Thread php-windows-digest-help
php-windows Digest 13 Dec 2003 06:38:04 - Issue 2039 Topics (messages 22371 through 22379): embedded PHP in HTML 22371 by: Ahmad Khashan 22372 by: Piotr Pluciennik 22375 by: Justin Patrin querying more than one db from a php page? 22373 by: George Pitcher