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

2003-08-22 Thread Neil Smith
Ahem. If you convert and store your data in XML format and handle it like that (say using sablotron or DomXML), as XML uses UTF16 internally, shouldn't that solve this (and a number of other) problem ? Cheers - Neil. At 02:28 22/08/2003 +, you wrote: Date: Fri, 22 Aug 2003 11:31:45 +0900 Fr

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

2003-08-22 Thread Svensson, B.A.T. \(HKG\)
> If you're looking for foreign keys, no. MySQL doesn't support that. > (Though I think it may be on the list of things to do.) The entrire ISO SQL-92 is said to be on the list of things to do, but do have you an idea how priorized the above issue is ? -- PHP Windows Mailing List (http://www.p

[PHP-WIN] php read asp session variable ?

2003-08-22 Thread giko
if is possible can anyone help me? I must read a session variable of asp in an app PHP ... is possible? thank's a lot... -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-WIN] Form data

2003-08-22 Thread Svensson, B.A.T. \(HKG\)
Where do you have your HTML code for the FORM then? May one see it? -Original Message- From: Muhammad Imran To: [EMAIL PROTECTED] Sent: 22-8-03 4:56 Subject: [PHP-WIN] Form data How i can process my form data, my form contain just one text input field and .php code have to show it bu

[PHP-WIN] MS Word COM Object formatting

2003-08-22 Thread Herhuth, Ron
I have a situation where I am storing Bios in SQL Server that contain HTML tags so they display correctly on Web Pages and on our company Portal. They recently decided that they want to have these Bios available in MS Word format. Because of the dynamic nature of the Bios and the importance of th

[PHP-WIN] Re: MS Word COM Object formatting

2003-08-22 Thread Chris Kranz
you should be able to ... in word ... open up the html page from word itself, and then save it as a word doc... thinking in my head, soemthing along the lines of... $file="bios.html" $word=new COM("Word.Application") or die("Cannot start word for you"); $word->visible =0 ; $word->Documents->Open($

[PHP-WIN] GD Library vs ImageMagick

2003-08-22 Thread Arijit Chaudhuri
I need to implement the following: a) Get the image height and width of images b) Create thumbnails and other lower resolution images from one high res image The site is expected to handle a large number of such operations with bulk uploaded images. Which would be better for implementation - gd li

php-windows Digest 22 Aug 2003 18:59:29 -0000 Issue 1882

2003-08-22 Thread php-windows-digest-help
php-windows Digest 22 Aug 2003 18:59:29 - Issue 1882 Topics (messages 21210 through 21216): Re:Re: [PHP-WIN] ascii to utf-16 21210 by: Neil Smith Re: how to establish relationship in Mysql 21211 by: Svensson, B.A.T. \(HKG\) php read asp session variable ? 21212 by:

[PHP-WIN] Problems with Unix timestamp

2003-08-22 Thread Stephen March
Hey folks, simple question for you.. I'm trying to search through a page (with fopen) for a Unix timestamp (on Windows). Simply doing while(!feof($fd)) { $line = fgets($fd, 4096); if(eregi(time(), $line) ... will not work.Upon further investigation, I could not get die(time()) to w