Re: [PHP] Re: XML and PHP

2003-11-06 Thread Burhan Khalid
Victor SpÄng Arthursson wrote: 2003-11-06 kl. 13.42 skrev pete M: http://www.zend.com/zend/art/parsing.php http://www.zend.com/zend/tut/tutbarlach.php in fact a google search for php,xml, expat, tutorial Well, interesting articles but not really what I was searching for. I'm rather looking for

Re: [PHP] BTML 2.0 released!!!

2003-11-06 Thread Burhan Khalid
Chris W. Parker wrote: Bas on Thursday, November 06, 2003 7:21 AM said: Okay, i am happy that BTML 2.0 is released(finally) You need to get a website and post a link to the site instead of posting a giant email with code that's not even indented and probably wrapp

Re: [PHP] Replacing text on page, but not in tags

2003-11-06 Thread Taylor York
Ya, i know it will be done with regular expressions, but how? I dont know how to format that kind of expression >> [snip] It would then be completely jacked up. Not only would it do the wrong img, but the tag in general would be screwed be cause of the bold tag. So what can I do? [/snip] Skip th

Re: [PHP] OT-Javascript Question

2003-11-06 Thread Marek Kilimajer
Jake McHenry wrote: I got everything working now. For some reason when I put it inside php, it wouldn't work with my variables with the numbers in front (1_Accounting_Unit) so I renamed all of them with the number at the end and they work fine. Jake The reason is here, notice the second paragraph:

Re: [PHP] Replacing text on page, but not in tags

2003-11-06 Thread John W. Holmes
Taylor York wrote: Lets say im trying to replace every occurance of 'hello' with 'hi'. Here's something that's probably close to what you want. Something else you need to worry about besides tags is what if the word "hello" appears in a tag? within Javascript? This will match anything outside

RE: [PHP] BTML 2.0 released!!!

2003-11-06 Thread Chris Hubbard
Bas, Looks interesting. But why would I use bhtml when I've got Smarty and 10,000 other templating systems to choose from? I'm not interested in the vauge promises of speed. I'm only interested in systems that make it easier for me to code. Smarty makes it easier for me to code. How does bhtml

[PHP] PHP Session passed to different sub domains

2003-11-06 Thread Makarov, Gera
Hi there, Could someone tell me how to pass a session cookie to different sub domains, without passing it in url. For example if I have the following domains: mydomain.com investment.mydomain.com business.mydomain.com market.mydomain.com and want to users to stay logged in while browsi

Re: [PHP] PHP Session passed to different sub domains

2003-11-06 Thread Mike Migurski
>Could someone tell me how to pass a session cookie to different sub >domains, without passing it in url. It's in the manaul... http://www.php.net/manual/en/function.setcookie.php "To make the cookie available on all subdomains of example.com then you'd set it to '.example

Re: [PHP] Multiple Image Uploads

2003-11-06 Thread Jason Wong
On Friday 07 November 2003 05:10, Jay Fitzgerald wrote: > Can someone help me with this? I've been trying to get it to work all day > :( > > http://codedump.phpfreaks.com/viewcode.php?id=2061 Please include your code as inline text in your post. You'll reach a wider audience as many people will n

Re: [PHP] fopen url

2003-11-06 Thread Jason Wong
On Friday 07 November 2003 04:12, John Hagstrand wrote: > I'm trying to read a URL. > > this works: fopen( "http://www.google.com";) > > this does not work: fopen( "http://news.google.com";) As it stands, neither of the above will work. fopen() requires at least 2 parameters. When you post cod

[PHP] Printing from PHP

2003-11-06 Thread Peter Goggin
Is it possible to have a php a script that will run on my server but let me print to my client network printer? What I am doing is using php to generate html for a report from a data base which is displayed on the clients screen. I would like to offer the client the option of printing this repor

Re: [PHP] Printing from PHP

2003-11-06 Thread Marco Tabini
Depends on how your overall network is configured. If the server on which PHP is running is on the same internal network as the printer, then the short answer is yes--the way you implement it depends on which OS your system is running. If PHP is running on Windows, there is a subset of printing

Re: [PHP] Printing from PHP

2003-11-06 Thread John W. Holmes
Peter Goggin wrote: Is it possible to have a php a script that will run on my server but let me print to my client network printer? No. PHP is server side, printing is client side. If php will not support access to a client printer is there any way of embedding a Form Feed in the display so tha

RE: [PHP] Multiple Image Uploads

2003-11-06 Thread Justin MacLeod
I'm with Jason. I was curious as to the subject but I will not click on the link. Justin MacLeod -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED] Sent: November 6, 2003 5:25 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Multiple Image Uploads On Friday 07 November 2003 05:10

RE: [PHP] Multiple Image Uploads

2003-11-06 Thread Jay Fitzgerald
I tried posting my code to the list but there are around 800+ lines of code and my email keeps bouncingi am open to suggestions? Jay At 06:59 PM 11/6/2003 -0800, you wrote: I'm with Jason. I was curious as to the subject but I will not click on the link. Justin MacLeod -Original Messa

RE: [PHP] Multiple Image Uploads

2003-11-06 Thread Justin MacLeod
Perhaps post the error message(s) that you are receiving and a snippet of the code in question. Also email me a copy of the code and I be glad to take a look at it. Justin -Original Message- From: Jay Fitzgerald [mailto:[EMAIL PROTECTED] Sent: November 6, 2003 8:05 PM To: Justin MacLeod

Re: [PHP] Multiple Image Uploads

2003-11-06 Thread Jason Wong
On Friday 07 November 2003 12:05, Jay Fitzgerald wrote: > I tried posting my code to the list but there are around 800+ lines of code > and my email keeps bouncingi am open to suggestions? Distill your code down to as little code as possible that still illustrates your problem and post that.

[PHP] Issues with Mysql 4.0 and PHP in a production environment

2003-11-06 Thread Luis Lebron
Are there any issues with running PHP 4.3.X and Mysql 4.0 in a production environment? thanks, Luis R. Lebron Project Manager Sigmatech, Inc

Re: [PHP] Issues with Mysql 4.0 and PHP in a production environment

2003-11-06 Thread CPT John W. Holmes
From: "Luis Lebron" <[EMAIL PROTECTED]> > Are there any issues with running PHP 4.3.X and Mysql 4.0 in a production > environment? Of course there is. If you write crappy code, your program will suffer. If you don't write crappy code, well, then you're fine. ---John Holmes... -- PHP General Ma

[PHP] Re: Issues with Mysql 4.0 and PHP in a production environment

2003-11-06 Thread Jeremy Zawodny
On Thu, Nov 06, 2003 at 02:10:27PM -0600, Luis Lebron wrote: > Are there any issues with running PHP 4.3.X and Mysql 4.0 in a production > environment? What sort of "issues" are you looking for? Jeremy -- Jeremy D. Zawodny | Perl, Web, MySQL, Linux Magazine, Yahoo! <[EMAIL PROTECTED]> | h

<    1   2