RE: [PHP] Re: xslt_process

2002-07-22 Thread ctan
Thanks for the quick response... See the thing is the XML is stored in a MySQL database. Is that what you mean Peter? Chia -Original Message- From: Peter Clarke [mailto:[EMAIL PROTECTED]] Sent: 22 July 2002 13:56 To: [EMAIL PROTECTED]; Ctan Cc: [EMAIL PROTECTED] Subject: [PHP] Re: xslt

php-general Digest 22 Jul 2002 12:54:28 -0000 Issue 1479

2002-07-22 Thread php-general-digest-help
php-general Digest 22 Jul 2002 12:54:28 - Issue 1479 Topics (messages 108782 through 108851): Re: Hex Help Please... 108782 by: Georgie Casey 108824 by: Martin Towell Re: get a list of clients with PHP 108783 by: Norbert Pfeiffer Traversing an appendable file

[PHP] Re: xslt_process

2002-07-22 Thread Peter Clarke
Ctan wrote: > Hi all, > > I'm trying to use xslt_process() to transform a variable containing XML data > with an xsl file into a result using PHP. Incidentally the XML is from an > external source, i.e. a database. However despite following the examples in > www.php.net I am unable to do so. Th

[PHP] Re: Using Javascript

2002-07-22 Thread Martin Clifford
Just my opinion, but it is ALWAYS a good idea to terminate statements with semicolons, no matter if there is or isn't additional statements. But thanks Chris for at least using standardized HTML coding practices. I can't stand it when I see tags and the like that don't cooperate with standards

RE: [PHP] include() and div align="top"

2002-07-22 Thread Jay Blanchard
[snip] > When i use on an include inside of a table > cell it dosen't work. Any reason? Almost certainly there'll be a reason. Browse the page in question in your web browser and then view the source - see if you've ended up with your page source as you'd intended. Most of these sorts of pr

[PHP] Re: Newbie's question about \n

2002-07-22 Thread KK Lee
Dear ALL, Thanks. KK Kk Lee ¼g¤J¡G > Dear ALL, > > It seems that i have a very silly problem. > I can't get the new line escape character to work. > the following is my SIMPLE script and corresponding output. > > PHP script: > "-//W3C//DTD HTML 4.0 Transitional//EN" >"http://www.w3.org

[PHP] multiple search

2002-07-22 Thread JJ Harrison
My question is what can I do if someone searches for php script for search? I would want to use OR in my SQL statment. The problem is how do I write the query so that it will detect the number of words sent then put enough ORs and LIKE '%$search[1]% in? Thanks. Here is the script. " . mysql_e

[PHP] Re: HTML E-mails

2002-07-22 Thread Manuel Lemos
Hello, On 07/20/2002 07:14 PM, Alex Kirk wrote: > I've just set out to build a PHP-based mail system that will be able to > send HTML e-mails to a variety of mail clients. So far, I'm having > moderate success: I can get Yahoo! and Hotmail to see the HTML, but not > Netscape Mail or Outlook Ex

Re: [PHP] Newbie's question about \n

2002-07-22 Thread Neil Freeman
nl2br() KK Lee wrote: > ** > This Message Was Virus Checked With : SAVI 3.59 May 2002 > Last Updated 8th July 2002 > ** > > Dear ALL, > > It seems tha

Re: [PHP] Newbie's question about \n

2002-07-22 Thread Tom Rogers
Hello KK, Monday, July 22, 2002, 9:00:47 PM, you wrote: KL> Dear ALL, KL> It seems that i have a very silly problem. KL> I can't get the new line escape character to work. KL> the following is my SIMPLE script and corresponding output. KL> PHP script: KL> "-//W3C//DTD HTML 4.0 Transitiona

RE: [PHP] Newbie's question about \n

2002-07-22 Thread Niklas Lampén
If you check the source of your code you'll see that in source the text is in two lines. \n doesn't work as , so this is about how HTML works, not plain text. Niklas -Original Message- From: KK Lee [mailto:[EMAIL PROTECTED]] Sent: 22. heinäkuuta 2002 14:01 To: [EMAIL PROTECTED] Subject

[PHP] Newbie's question about \n

2002-07-22 Thread KK Lee
Dear ALL, It seems that i have a very silly problem. I can't get the new line escape character to work. the following is my SIMPLE script and corresponding output. PHP script: http://www.w3.org/TR/html4/loose.dtd"; > TEST Output in IE6: this should be printed out: this is a second

Re: [PHP] imagecolortransparent()

2002-07-22 Thread Tom Rogers
Hello Nick, Monday, July 22, 2002, 8:47:39 PM, you wrote: N> i get php to allocate a colour then make it transparent using N> imagecolortransparent() N> instead of turning it transparent it becomes black. N> Is it something i'm doing wrong? can anyone help me? N> thanx in advance Post a bit

[PHP] xslt_process

2002-07-22 Thread ctan
Hi all, I'm trying to use xslt_process() to transform a variable containing XML data with an xsl file into a result using PHP. Incidentally the XML is from an external source, i.e. a database. However despite following the examples in www.php.net I am unable to do so. The code works out to someth

[PHP] imagecolortransparent()

2002-07-22 Thread Nick
i get php to allocate a colour then make it transparent using imagecolortransparent() instead of turning it transparent it becomes black. Is it something i'm doing wrong? can anyone help me? thanx in advance -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www

RE: [PHP] Session Tracking

2002-07-22 Thread John Holmes
> Do we have to use the key word > session_register("variablename"); > in every single page, in which we plan to use the "variablename"?. Or is > it > possible that we register the variablename once, and in the subsequent > pages > continue to access it using $variablename ? You just have to cal

Re: [PHP] $HTTP_SERVER_VARS not accessible in Functions

2002-07-22 Thread Jason Wong
On Monday 22 July 2002 13:46, Monty wrote: > I'm trying to access some settings in the $HTTP_SERVER_VARS[] array, but, > within a custom function() this array appears empty. In the calling script, > however, the $HTTP_SERVER_VARS[] array is defined. > > I thought this was supposed to be "superglob

Re: [PHP] separated string by comas

2002-07-22 Thread Jason Wong
On Monday 22 July 2002 14:56, [EMAIL PROTECTED] wrote: > I have a string that is separated by spaces like this > $string="test test1 test2 test3"; > how can I make the string so it is separated by comas like this > $string="test,test1,test2,test3"; > I know this is probably simple but I just can't

Re: [PHP] Images of GD Library

2002-07-22 Thread Jason Wong
On Monday 22 July 2002 15:35, Lord Loh. wrote: > 1. How can I store an image in a database.. ? > 2. How can this be now used to create an image ? Search archives for various combinations of: upload, image, mysql > 3. Is there any way I can read an image from a remote site and save it's > mina

<    1   2   3