[PHP] Re: PHP and XML

2009-11-24 Thread Nathan Rixham
Juan wrote: > El día 23 de noviembre de 2009 13:25, Nathan Rixham > escribió: >> Juan Marcelo Rodríguez Monti wrote: >>> Hi people, >>> I have some doubts about this topic that I'm gonna explain. >>> >>> I have a few sites in flash, and I was requested to write a PHP frontend >>> to send news. I h

[PHP] Re: PHP and XML

2009-11-24 Thread Juan
El día 23 de noviembre de 2009 13:25, Nathan Rixham escribió: > Juan Marcelo Rodríguez Monti wrote: >> Hi people, >> I have some doubts about this topic that I'm gonna explain. >> >> I have a few sites in flash, and I was requested to write a PHP frontend >> to send news. I have this already done

[PHP] Re: PHP and XML

2009-11-23 Thread Nathan Rixham
Juan Marcelo Rodríguez Monti wrote: > Hi people, > I have some doubts about this topic that I'm gonna explain. > > I have a few sites in flash, and I was requested to write a PHP frontend > to send news. I have this already done and it works perfect. It's a LAMP > App to send and edit news, post v

RE: [PHP] Re: PHP and CGI

2009-08-19 Thread Bob McConnell
From: sono...@fannullone.us > On Aug 18, 2009, at 7:13 PM, Shawn McKenzie wrote: > P.S. Does anyone know of a good Perl mailing list? beginn...@perl.org Or you can try www.perlmonks.org. Bob McConnell -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/

Re: [PHP] Re: PHP and CGI

2009-08-19 Thread Ben Dunlap
>        That's exactly the case.  I have been running my business on a Perl > cart for the last 5+ years, and I can't switch to a PHP cart just yet.  I > was just hoping to add some functionality with PHP.  Perl was much harder It would probably bomb your performance but you could always call a s

Re: [PHP] Re: PHP and CGI

2009-08-18 Thread kranthi
try adding AddType application/x-httpd-php .pl --> or whatever extension your perl script has -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: PHP and CGI

2009-08-18 Thread sono-io
On Aug 18, 2009, at 7:13 PM, Shawn McKenzie wrote: I assumed that the problem was that he knew PHP and he had downloaded a Perl cart and didn't know Perl. That's exactly the case. I have been running my business on a Perl cart for the last 5+ years, and I can't switch to a PHP cart just

Re: [PHP] Re: PHP and CGI

2009-08-18 Thread Shawn McKenzie
Andrew Mason wrote: > If you already have it written in Perl, I would recommend writing the > rest of functionality in Perl. > > Please reply all. I agree, but I assumed that the problem was that he knew PHP and he had downloaded a Perl cart and didn't know Perl. -Shawn -- PHP General Mail

[PHP] Re: PHP and CGI

2009-08-18 Thread Shawn McKenzie
sono...@fannullone.us wrote: > I've searched high and low for an answer to this. Hopefully someone > here might know. Can PHP be used under a CGI? I tried to put the > following code on one of my perl shopping cart pages but it doesn't work: > > echo ""; > for ($year = date("Y") ; $year <=

RE: [PHP] ! and !=

2009-04-23 Thread Ford, Mike
On 23 April 2009 01:05, George Langley advised: > Doh, of course! Just not thinking about the scope of > the operator. If $var1 = 1, then !$var1 = 0 > Thanks everyone! Well, actually, to be strictly accurate, since ! is a Boolean operator, if $var1 = 1 then !$var1 = FALSE. Cheers

Re: [PHP] ! and !=

2009-04-22 Thread George Langley
Doh, of course! Just not thinking about the scope of the operator. If $var1 = 1, then !$var1 = 0 Thanks everyone! George - Original Message - From: Tom Rogers Date: Wednesday, April 22, 2009 17:01 Subject: Re: [PHP] ! and != To: George Langley Cc: php-general

Re: [PHP] ! and !=

2009-04-22 Thread Tom Rogers
Hi, Thursday, April 23, 2009, 8:30:34 AM, you wrote: GL> Hi all. Maybe I'm just getting confused by all the GL> languages I'm trying to work with! But, isn't: GL> if(!$var1 == $var2){ GL> the same thing as GL> if($var1 != $var2){ GL> #1 doesn't work, #2 does. GL> Thanks

Re: [PHP] ! and !=

2009-04-22 Thread Chris
George Langley wrote: Hi all. Maybe I'm just getting confused by all the languages I'm trying to work with! But, isn't: if(!$var1 == $var2){ the same thing as if($var1 != $var2){ #1 doesn't work, #2 does. Thanks! No. The second is seeing if $var1 is not equal to $v

Re: [PHP] ! and !=

2009-04-22 Thread 9el
On Thu, Apr 23, 2009 at 4:30 AM, George Langley wrote: >        Hi all. Maybe I'm just getting confused by all the languages I'm > trying to work with! But, isn't: > > if(!$var1 == $var2){ Means if (NOT($var1) == $var2) > > the same thing as > > if($var1 != $var2){ means $var1 NOTEQUALS $var2

Re: [PHP] Re: PHP and Send Mail

2009-04-09 Thread Michael A. Peters
Bob McConnell wrote: *snip* Just be aware that it does have a few bugs you may need to work around or patch. The SourceForge tracker is at . I submitted two reports last year against 1.73 which the tracker says were summarily closed wit

RE: [PHP] Re: PHP and Send Mail

2009-04-09 Thread Bob McConnell
From: Michael A. Peters > 9el wrote: >> On Thu, Apr 9, 2009 at 7:19 AM, Shawn McKenzie wrote: >>> Alejandro Esteban Galvez wrote: Hi!, I am making a web system and i need known how send a mail using PHP >> Hi, >> Use PHPmailer or PEAR:mail() > > I second PHPmailer. > It rocks! Just be aware

Re: [PHP] Re: PHP and Send Mail

2009-04-08 Thread Michael A. Peters
9el wrote: On Thu, Apr 9, 2009 at 7:19 AM, Shawn McKenzie wrote: Alejandro Esteban Galvez wrote: Hi!, I am making a web system and i need known how send a mail using PHP Hi, Use PHPmailer or PEAR:mail() I second PHPmailer. It rocks! -- PHP General Mailing List (http://www.php.net/) To unsu

Re: [PHP] Re: PHP and Send Mail

2009-04-08 Thread 9el
On Thu, Apr 9, 2009 at 7:19 AM, Shawn McKenzie wrote: > Alejandro Esteban Galvez wrote: >> Hi!, I am making a web system and i need known how send a mail using PHP Hi, Use PHPmailer or PEAR:mail() And I'm Lenin Bye :) www.twitter.com/nine_L -- PHP General Mailing List (http://www.php.net/) To

[PHP] Re: PHP and Send Mail

2009-04-08 Thread Shawn McKenzie
Alejandro Esteban Galvez wrote: > Hi!, I am making a web system and i need known how send a mail using PHP > > Bye > > > > --- > Alejandro Esteban Galvez > Administrador de Red IPICHMC Rimed, > Radio-Aficionado CL2AEG > Linux User #472120

Re: [PHP] & and && and weird results

2009-04-01 Thread Chris
Thanks for that. I understand. Somehow, I had tried OR at one point but I got one of those orange boxes probably for some other error and in the confusion of my neurons I overlooked it. However, I am puzzled that using & (not &&) did give a lot of results, almost the whole db which is thankfully

Re: [PHP] & and && and weird results

2009-04-01 Thread PJ
Lex Braun wrote: > PJ, > > On Wed, Apr 1, 2009 at 1:40 PM, PJ > wrote: > > SELECT * FROM book >WHERE id IN (SELECT bookID >FROM book_author WHERE authID IN (SELECT author.id > >FROM author WHERE LEFT(las

Re: [PHP] & and && and weird results

2009-04-01 Thread Lex Braun
PJ, On Wed, Apr 1, 2009 at 1:40 PM, PJ wrote: > SELECT * FROM book >WHERE id IN (SELECT bookID >FROM book_author WHERE authID IN (SELECT author.id >FROM author WHERE LEFT(last_name, 1 ) = '$Auth' && > LEFT(last_name, 1 ) = '$Auth1' && LEFT(last_name, 1 ) = '$Auth2')); >

Re: [PHP] & and && and weird results NOT solved but FIXED ....

2009-04-01 Thread PJ
PJ wrote: > Kyle Smith wrote: > >> Kyle Smith wrote: >> >>> PJ wrote: >>> I hope somebody can make sense of this. First, I don't understand what the difference is supposed to be between & and && - is there a difference for php and/or mysql? Second, I am trying to

Re: [PHP] & and && and weird results

2009-04-01 Thread PJ
Kyle Smith wrote: > Kyle Smith wrote: >> PJ wrote: >>> I hope somebody can make sense of this. >>> First, I don't understand what the difference is supposed to be between >>> & and && - is there a difference for php and/or mysql? >>> Second, I am trying to select all occurrences in a table.column w

Re: [PHP] & and && and weird results

2009-04-01 Thread Kyle Smith
Kyle Smith wrote: PJ wrote: I hope somebody can make sense of this. First, I don't understand what the difference is supposed to be between & and && - is there a difference for php and/or mysql? Second, I am trying to select all occurrences in a table.column where the first letter of the name is

Re: [PHP] & and && and weird results

2009-04-01 Thread Kyle Smith
PJ wrote: I hope somebody can make sense of this. First, I don't understand what the difference is supposed to be between & and && - is there a difference for php and/or mysql? Second, I am trying to select all occurrences in a table.column where the first letter of the name is I, J, or K but not

Re: [PHP] Re: Re: Re: Php and CSS where to put it

2009-01-14 Thread Ashley Sheridan
On Thu, 2009-01-15 at 01:42 +0100, Michelle Konzack wrote: > Hello Ashley, > > Am 2009-01-13 22:14:53, schrieb Ashley Sheridan: > > Yeah. Now my development goes like this: > > > > 1. Design for Firefox > > 2. Fix for Opera, Safari et al > > 3. Fix for IE > > But generally speaking

[PHP] Re: Re: Re: Php and CSS where to put it

2009-01-14 Thread Michelle Konzack
Hello Ashley, Am 2009-01-13 22:14:53, schrieb Ashley Sheridan: > Yeah. Now my development goes like this: > > 1. Design for Firefox > 2. Fix for Opera, Safari et al > 3. Fix for IE > But generally speaking, if it works in Firefox, it'll most likely behave > itself in everything exc

Re: [PHP] Re: Re: Php and CSS where to put it

2009-01-13 Thread Andrew Ballard
On Tue, Jan 13, 2009 at 5:14 PM, Ashley Sheridan wrote: > Yeah. Now my development goes like this: > > 1. Design for Firefox > 2. Fix for Opera, Safari et al > 3. Fix for IE > But generally speaking, if it works in Firefox, it'll most likely behave > itself in everything except IE ;) >

Re: [PHP] Re: Re: Php and CSS where to put it

2009-01-13 Thread Ashley Sheridan
On Tue, 2009-01-13 at 18:41 +0100, Michelle Konzack wrote: > Am 2009-01-12 21:56:00, schrieb Ashley Sheridan: > > Here's something for fixing IE with hacks: > > > > http://www.ashleysheridan.co.uk/coding_html_comments.php > > > > basically it lets you add in extra IE-only stylesheets using commen

[PHP] Re: Re: Php and CSS where to put it

2009-01-13 Thread Michelle Konzack
Am 2009-01-12 21:56:00, schrieb Ashley Sheridan: > Here's something for fixing IE with hacks: > > http://www.ashleysheridan.co.uk/coding_html_comments.php > > basically it lets you add in extra IE-only stylesheets using comment > code only recognised by IE, and you can use !important to stress yo

[PHP] Re: Php and CSS where to put it

2009-01-13 Thread Al
Terion Miller wrote: I have this code and the css seems to not work in IE at all, do I need to put it somewhere different on the page maybe? xCount ORDER BY RAND() LIMIT 3"; $result = mysql_query($sql); echo " "; while ($row = mysql_fetch_array($result)) { echo " {$row['title']

Re: [PHP] Re: Php and CSS where to put it

2009-01-12 Thread Paul M Foster
On Mon, Jan 12, 2009 at 09:56:00PM +, Ashley Sheridan wrote: > > Here's something for fixing IE with hacks: > > http://www.ashleysheridan.co.uk/coding_html_comments.php > > basically it lets you add in extra IE-only stylesheets using comment > code only recognised by IE, and you can use !

Re: [PHP] Re: Php and CSS where to put it

2009-01-12 Thread Ashley Sheridan
On Mon, 2009-01-12 at 16:27 -0500, tedd wrote: > At 7:38 PM +0100 1/12/09, Michelle Konzack wrote: > >Hello Terion, > > > >Am 2009-01-12 10:42:10, schrieb Terion Miller: > > > I have this code and the css seems to not work in IE at all, do I need to > > > put it somewhere different on the page m

Re: [PHP] Re: Php and CSS where to put it

2009-01-12 Thread Robert Cummings
On Mon, 2009-01-12 at 16:27 -0500, tedd wrote: > At 7:38 PM +0100 1/12/09, Michelle Konzack wrote: > >Hello Terion, > > > >Am 2009-01-12 10:42:10, schrieb Terion Miller: > > > I have this code and the css seems to not work in IE at all, do I need to > > > put it somewhere different on the page ma

[PHP] Re: Php and CSS where to put it

2009-01-12 Thread tedd
At 7:38 PM +0100 1/12/09, Michelle Konzack wrote: Hello Terion, Am 2009-01-12 10:42:10, schrieb Terion Miller: > I have this code and the css seems to not work in IE at all, do I need to > put it somewhere different on the page maybe? The CSS must be in the HTML Header like CSS Example

Re: [PHP] Re: Php and CSS where to put it

2009-01-12 Thread Terion Miller
Resolved! Thanks! On Mon, Jan 12, 2009 at 12:38 PM, Michelle Konzack < linux4miche...@tamay-dogan.net> wrote: > Hello Terion, > > Am 2009-01-12 10:42:10, schrieb Terion Miller: > > I have this code and the css seems to not work in IE at all, do I need to > > put it somewhere different on the page

[PHP] Re: Php and CSS where to put it

2009-01-12 Thread Michelle Konzack
Hello Terion, Am 2009-01-12 10:42:10, schrieb Terion Miller: > I have this code and the css seems to not work in IE at all, do I need to > put it somewhere different on the page maybe? The CSS must be in the HTML Header like CSS Example #body { background-color: magenta; } ..

Re: [PHP] Re: PHP and Cyrus problem

2008-11-10 Thread Emerson Virti
Thank's for response. This solution I tried many times but didn't resolved. The reconstruct command don't modify this cyrus.header file. 2008/11/7 Colin Guthrie <[EMAIL PROTECTED]> > Emerson Virti wrote: > >> Where is the problem? >> > > Probably not the right list, but have you tried using cyr

[PHP] Re: PHP and Cyrus problem

2008-11-07 Thread Colin Guthrie
Richard Heyes wrote: ...PHP for webmail. Did you know you can use Gmail for webmail, even having the From: address set to your own domain? It will require a little more setup (well, with ten thousand mailboxes that would be "a lot") but you end with one of the best webmail clients there is. W

[PHP] Re: PHP and Cyrus problem

2008-11-07 Thread Colin Guthrie
Emerson Virti wrote: Where is the problem? Probably not the right list, but have you tried using cyradm and running: reconstruct user.name.mailbox.name (correct the folder as needed). When a cyrus database file gets corrupted or generally borked this fixes it 99% of the time for me. Col

Re: [PHP] Re: PHP and SQL Server

2008-09-23 Thread Andrew Ballard
On Tue, Sep 23, 2008 at 10:43 AM, Nathan Rixham <[EMAIL PROTECTED]> wrote: > Andrew Ballard wrote: > [snip] >> >> 4K limit on TEXTSIZE > > [/snip] > > As far as I was aware this was a PHP thing that can be changed in your > php.ini [mssql.textlimit and mssql.textsize] > We have, and it affects the

[PHP] Re: PHP and SQL Server

2008-09-23 Thread Nathan Rixham
Andrew Ballard wrote: [snip] 4K limit on TEXTSIZE [/snip] As far as I was aware this was a PHP thing that can be changed in your php.ini [mssql.textlimit and mssql.textsize] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: PHP and MySQL SELECT COUNT (*)

2008-09-18 Thread Vinny Gullotta
Thanks all, I appreciate the follow ups and the help with the code. I'm still relatively new with this stuff, and never had any formal training, it's all just been learn as I go, and I have to learn fast as this project is relatively urgent to get completed. I plan on going through all of my co

Re: [PHP] Re: PHP and MySQL SELECT COUNT (*)

2008-09-17 Thread Chris
1: SQL in mysql queries /should/ use backticks (`) around database, table and column names, stop's them getting confused with variables or reserved words (like timestamp) and saves you future trouble :) .. which is a mysql-ism - no other database supports this. As soon as you need to use an

Re: [PHP] Re: PHP and MySQL SELECT COUNT (*)

2008-09-17 Thread Nathan Rixham
learn something new every day! cheers Micah :) Micah Gersten wrote: While it's true that '.' concatenates and ',' is a list separator, The comma is actually more appropriate in this instance since you are just outputting each piece. It saves the overhead of concatenation before output. Thank y

Re: [PHP] Re: PHP and MySQL SELECT COUNT (*)

2008-09-17 Thread Micah Gersten
While it's true that '.' concatenates and ',' is a list separator, The comma is actually more appropriate in this instance since you are just outputting each piece. It saves the overhead of concatenation before output. Thank you, Micah Gersten onShore Networks Internal Developer http://www.onshor

[PHP] Re: PHP and MySQL SELECT COUNT (*)

2008-09-17 Thread Nathan Rixham
Vinny Gullotta wrote: What I want to do is find the top 10 servers where the column steps = iisreset. The following code works great except that the page is not displaying the servername in the 'Server Name' column of my results (nothing appears, the column is just blank). servername and step

[PHP] Re: PHP and Apache

2008-06-23 Thread Jon Drukman
R B wrote: Hello, I´m developing a PHP system that needs one of these lines in the .htaccess, depending of the server configuration: AddHandler application/x-httpd-php .xyz or AddHandler application/x-httpd-php4 .xyz or AddHandler application/x-httpd-php5 .xyz How can i detect "on the fly"

Re: [PHP] and newlines under windows

2007-08-10 Thread Richard Lynch
On Fri, August 10, 2007 11:48 am, Faither wrote: > I'm kind of lost with how str_replace , preg_replace, ereg_replace or > even explode are handling a "\n"-ewline. . . . > Is it even possible under windows? ^^ In Linux, the newline is "\n", but... Under Windows, the newline isn't "\n", it's "\r\n

Re: [PHP] RE: RE: PHP and XML

2006-11-26 Thread Børge Holen
so I see... just follow the guidelines on php.net on what NOT to do after a hello all > I have created a simple xml file address.php i.e > $xmlstr = << > > > > > >

[PHP] RE: RE: PHP and XML

2006-11-26 Thread onewaylife
hello all I have created a simple xml file address.php i.e ]> XML; ?> and one simple form: - My Address Book

[PHP] Re: PHP and XML

2006-11-24 Thread Myron Turner
I'm not sure you are going about this the right way. It's my impression that you may not yet have learned the basics of XML. Really, the very basics are quite simple. For your address book, for instance, you could create a simple XML structure such as this:

RE: [PHP] RE: PHP and XML

2006-11-24 Thread Edward Kay
In that case you need to do some of your own research. Google is your friend. > Hello Edward > Just i don't now where to start. > > > Edward Kay wrote: > > > > Hello, > > > > You say that you are "unable to store the files in XML". Why is > this? Are > > you getting an error message or do you jus

[PHP] RE: PHP and XML

2006-11-23 Thread onewaylife
Hello Edward Just i don't now where to start. Edward Kay wrote: > > Hello, > > You say that you are "unable to store the files in XML". Why is this? Are > you getting an error message or do you just not know where to start? > > Edward > >> Dear All >> >> I am novice in PHP & XML, while try

[PHP] Re: php and session issues continued...

2006-09-16 Thread Tom Atkinson
How are you setting the location? If the user starts at www.yoursite.com and you redirect to yoursite.com after the first form then you'll lose the session since it's a different domain. Dave Goodchild wrote: Hi all. I have a session issue and wondered if anyone else has encountered this:

[PHP] Re: PHP and mySQL dates

2006-09-13 Thread Colin Guthrie
> "SELECT id FROM dates WHERE FROM_UNIXTIME($date_string) = date" > > then > > "SELECT id FROM dates WHERE UNIX_TIMESTAMP(date) = $date_string" > > neither is working. Am I making some fundamental error here or missing > something? Any help appreciated! I know yui've alreayd solved this, but f

Re: [PHP] Re: Php and Cygwin SVN

2006-08-31 Thread Adam Zey
Look into the syntax of the Windows command "start" (open a console and type "start /?"). It's purpose is to start other processes, and it provides some flexibility as to how they're launched. One of the options is to hide the console windows. Regards, Adam Zey. Mariano Guadagnini wrote: Than

Re: [PHP] Re: Php and Cygwin SVN

2006-08-31 Thread Mariano Guadagnini
Thanks for your reply. I checked those ports and seem nice. Actually, i use cygwin mainly because it was already installed on the Windows server. But the same problem arises with any command I execute trough shell_exec, no matter if it's a cygwin executable or a windows native app, the command

[PHP] Re: Php and Cygwin SVN

2006-08-31 Thread Adam Zey
Mariano Guadagnini wrote: Hello list, I'm developing an application that fetches some files from a local svn repository, and shows them on request (using svn cat, svn list and such). Originally, it was deployed in Linux (Apache, PHP5.0) and worked perfectly well. I tried to port it to Windows

Re: [PHP] Re: php and dynamic forms

2006-08-15 Thread tedd
At 1:24 AM -0400 8/15/06, Robert Cummings wrote: On Tue, 2006-08-15 at 13:02 +0800, Bigmark wrote: Does anyone have a simple example script. In the first form include a hidden field that identifies the form when you are checking the post values after submission. This way you know exactly wha

Re: [PHP] Re: php and dynamic forms

2006-08-15 Thread Robert Cummings
On Tue, 2006-08-15 at 13:02 +0800, Bigmark wrote: > Does anyone have a simple example script. > In the first form include a hidden field that identifies the form when you are checking the post values after submission. This way you know exactly what form was submitted. Second if the first form has

Re: [PHP] Re: php and dynamic forms

2006-08-14 Thread Robert Cummings
On Tue, 2006-08-15 at 01:24 -0400, Robert Cummings wrote: > On Tue, 2006-08-15 at 13:02 +0800, Bigmark wrote: > > Does anyone have a simple example script. > > > > In the first form include a hidden field that identifies the form when > you are checking the post values after submission. This way

[PHP] Re: php and dynamic forms

2006-08-14 Thread Bigmark
Does anyone have a simple example script. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHP and mySQL getting smashed...

2006-05-18 Thread Robert Samuel White
Upgrade your MySQL distribution to the latest version (5+). Upgrade any shared MySQL libraries to the latest distribute. Recompile MySQL with mysqli support. http://php.net/mysqli And use that instead of the regular MySQL functions. That's what I did and it has made a huge diffe

Re: [PHP] Re: php and ssl

2006-05-04 Thread Schalk
Schalk Neethling wrote: Barry wrote: Schalk schrieb: Greetings All, I am currently implementing a form for a client that will run over https. Now, all is good and well except, for some reason when the form loads in IE the lock in the status bar displays for a short while and then goes away,

Re: [PHP] Re: php and ssl

2006-05-04 Thread Schalk Neethling
Barry wrote: Schalk schrieb: Greetings All, I am currently implementing a form for a client that will run over https. Now, all is good and well except, for some reason when the form loads in IE the lock in the status bar displays for a short while and then goes away, it is fine in Firefox th

[PHP] Re: php and ssl

2006-05-04 Thread Barry
Schalk schrieb: Greetings All, I am currently implementing a form for a client that will run over https. Now, all is good and well except, for some reason when the form loads in IE the lock in the status bar displays for a short while and then goes away, it is fine in Firefox though. The way

Re: [PHP] Re: PHP and DBase...

2006-01-31 Thread Barry
Jochem Maas wrote: Barry wrote: David BERCOT wrote: Hi, I'd like to connect to DBase files (.dbf) in order to do SQL requests. Do you know if it is possible ? If yes, do you have an example ? I'm working on Debian with PHP5. Thank you very much. David. Blind? 'Blind' ... is that a ph

Re: [PHP] Re: PHP and DBase...

2006-01-31 Thread Jochem Maas
Barry wrote: David BERCOT wrote: Hi, I'd like to connect to DBase files (.dbf) in order to do SQL requests. Do you know if it is possible ? If yes, do you have an example ? I'm working on Debian with PHP5. Thank you very much. David. Blind? 'Blind' ... is that a php framework? ;-) htt

[PHP] Re: PHP and DBase...

2006-01-31 Thread Barry
David BERCOT wrote: Hi, I'd like to connect to DBase files (.dbf) in order to do SQL requests. Do you know if it is possible ? If yes, do you have an example ? I'm working on Debian with PHP5. Thank you very much. David. Blind? http://de.php.net/dbase -- Smileys rule (cX.x)C --o(^_^o) -- P

[PHP] Re: PHP and Apache 2.2.0

2005-12-18 Thread Kevin McBride
Manuel Lemos wrote: I built PHP 5.1 with Apache 2.2 following these instructions and it works: http://ww.php.net/manual/en/install.unix.apache2.php Seems to work now... maybe Apache meant that the 2.0 vs. 2.2 module info was valid only for precompiled binaries... -- PHP General Mailing List

[PHP] Re: PHP and Apache 2.2.0

2005-12-17 Thread Manuel Lemos
Hello, on 12/17/2005 04:58 PM Kevin McBride said the following: Use the same as for Apache 2.0 . I get "garbled code" errors; tried it before I even posted to the list. Here's an excerpt from the Apache download page: Apache 2.2 add-in modules are not compatible with Apache 2.0 or 1.3 modu

[PHP] Re: PHP and Apache 2.2.0

2005-12-17 Thread Kevin McBride
Manuel Lemos wrote: Use the same as for Apache 2.0 . I get "garbled code" errors; tried it before I even posted to the list. Here's an excerpt from the Apache download page: Apache 2.2 add-in modules are not compatible with Apache 2.0 or 1.3 modules. If you are running third party add-in m

[PHP] Re: PHP and Apache 2.2.0

2005-12-17 Thread Manuel Lemos
Hello, on 12/16/2005 12:36 PM Kevin McBride said the following: I am curious to know if there are plans to make a module for Apache 2.2.0. I couldn't find it in the anonymous CVS, but if it's already there, can someone point to me where it is? Use the same as for Apache 2.0 . -- Regards, M

[PHP] Re: PHP and Apache 2.2.0

2005-12-16 Thread Kevin McBride
belia wrote: Hi, You can download at http://www.apachelounge.com/download/ I am using Linux, not Windows, so the content there will not work. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: PHP and email

2005-11-23 Thread Anas Mughal
I have implemeted a system that dispatches between 600 to 2000 emails every night. An email is sent for each recepient. My system is hosted on a shared Linus server. I have not heard any complaints from the hosting company so far. Here are my recommendations: - Have a cron job that kicks off your

Re: [PHP] Re: PHP and email

2005-11-23 Thread John Nichel
Petr Smith wrote: Thanks to those who have replied so far, yes our main concern is the smtp server falling over or dying. So to come back to John Nichel's answer: John, have you done this personally and I assume the effects were good?? IE everything ran smoothly? I have done it just as J

[PHP] Re: PHP and email

2005-11-23 Thread Petr Smith
Thanks to those who have replied so far, yes our main concern is the smtp server falling over or dying. So to come back to John Nichel's answer: John, have you done this personally and I assume the effects were good?? IE everything ran smoothly? I have done it just as John has described ab

Re: [PHP] Re: Php and Ruby

2005-10-23 Thread Greg Donald
On 10/23/05, Jacob Friis Saxberg <[EMAIL PROTECTED]> wrote: > > How can I use Ruby with Php? > > I mean Rails. sorry :) http://www.rubyonrails.org/ I have a couple of Rails apps on my own server with other PHP apps running there too. Apache will run mod_fcgi and mod_php at the same time with no

[PHP] Re: Php and Ruby

2005-10-23 Thread Jacob Friis Saxberg
> How can I use Ruby with Php? I mean Rails. sorry :) > My goal is to have (Independence of Presentation Logic(IoPL)). -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHP and files Upload

2005-10-19 Thread Mark Rees
> the script always says it was sucessful to upload the file, but the destination > directory was always empty... > even when checking the $_FILES global > > $_FILES['var_name']['tmp_name'] and > $_FILES['var_name']['name'] and > $_FILES['var_name']['size'], the vars alwyas return empty values...

[PHP] Re: PHP and Active Directory

2005-10-03 Thread Mark Rees
How do I connect a php script running on linux with Active Directory on a windows machine? I would like to have my php script autmotatically read email addresses from the AD server. Can this be done? I've found a bunch of ldap functions for php but they seem to require ldap to be installed on linux

Re: [PHP] Re: Php and postfix error <[EMAIL PROTECTED]>: Sender address rejected: Domain not found

2005-09-02 Thread choksi
Thanks This is sorted now. Rgds Dhaval On 02/09/05, JamesBenson <[EMAIL PROTECTED]> wrote: > > http://php.net/mail > > > > choksi wrote: > > Hi All, > > I have php running over Apache on a debian box. I am tryin to use the > php > > mail function. When i run this command from console (php

[PHP] Re: Php and postfix error <[EMAIL PROTECTED]>: Sender address rejected: Domain not found

2005-09-02 Thread JamesBenson
http://php.net/mail choksi wrote: Hi All, I have php running over Apache on a debian box. I am tryin to use the php mail function. When i run this command from console (php email.php) it will run and the mail is delivered as it will get the from username from the postfix config file but wh

Re: [PHP] & and mySQL

2005-08-28 Thread Richard Lynch
On Sat, August 27, 2005 2:43 pm, mastershay wrote: > Hi, I am trying to search mySQL for URLs that include & in them. I > start > with a standard URL that uses &, use str_replace to put in &, and > then > do a mySQL query. However, nothing is found when I run the search > through > PHP. When I do t

Re: [PHP] Re: PHP and ISMAP

2005-07-29 Thread André Medeiros
On Fri, 2005-07-29 at 14:47 +0200, Michelle Konzack wrote: > Please no CC, I am on the list. > > Am 2005-07-29 14:20:47, schrieb André Medeiros: > > Why not using a rewrite rule that would point to an index.php or > > somesuch? > > And then ? > I have e.g. 8x6 click maps, pointing all to the same

[PHP] Re: PHP and ISMAP

2005-07-29 Thread Michelle Konzack
Please no CC, I am on the list. Am 2005-07-29 14:20:47, schrieb André Medeiros: > Why not using a rewrite rule that would point to an index.php or > somesuch? And then ? I have e.g. 8x6 click maps, pointing all to the same index.php ? How do the CGI know on which map I have clicked ? And using r

[PHP] Re: PHP and Perl

2005-07-23 Thread Jasper Bryant-Greene
Linda H wrote: I am needing to write a front end for an online application written in Perl. Is there a way for PHP to call a module or function written in Perl? Firstly, please don't reply to existing threads with a completely new topic. For those of us that use threaded newsreaders, your mess

[PHP] Re: PHP and USB Devices

2005-05-31 Thread Jason Barnett
Joe Harman wrote: Has anyone out there found a way to get information from a USB device running on their computer... what i am trying to do is retrive the fingerprint ID that the Microsoft USB fingerprint reader returns for a finger print and put it in a webpage form??? There has to be a way to

Re: [PHP] Re: PHP and Access

2005-02-26 Thread Bruno Santos
pete M wrote: Check this out http://adodb.sourceforge.net/ http://phplens.com/adodb/code.initialization.html#init have fun Pete Bruno Santos wrote: Hello. I need to to an application in PHP with graphics creation. The database where i need to go and fetch the values is access. is possible for PHP t

[PHP] Re: PHP and Access

2005-02-26 Thread pete M
Check this out http://adodb.sourceforge.net/ http://phplens.com/adodb/code.initialization.html#init have fun Pete Bruno Santos wrote: Hello. I need to to an application in PHP with graphics creation. The database where i need to go and fetch the values is access. is possible for PHP to fecth values

[PHP] Re: php and flash

2004-12-15 Thread Manuel Lemos
Hello, on 12/16/2004 12:40 AM Dustin Krysak said the following: Can anyone point to some good tutorials on using PHP with flash? I am mostly interested in displaying info from a database in the flash movie, as well as loading movies and pictures into the flash file (referenced in the database).

Re: [PHP] and statement

2004-11-28 Thread John Nichel
Brad Ciszewski wrote: is there an 'and' statement for mysql, when you are doing multiple "where"s? Is there a PHP question in your MySQL question? -- By-Tor.com ...it's all about the Rush http://www.by-tor.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.n

[PHP] Re: PHP and send XML

2004-10-28 Thread Manuel Lemos
Hello, On 10/28/2004 11:01 AM, Victor C. wrote: I'm trying to pass XML file from Site A to Site B for Site B to parse. Site B is maintained by other company, so I only need to worry about sending over the XML file. I've been hinted that fsockopen() can do the job. You may want to try this HTTP cli

Re: [PHP] Re: php and print

2004-10-12 Thread Greg Donald
On Tue, 12 Oct 2004 20:57:54 +0100, Harlequin <[EMAIL PROTECTED]> wrote: > I'm also using Hypertext Mark-up Language and Hypertext Pre-processor but > hey - who cares about the TLAs...? No idea what a 'TLA' is in this context, but you're definitely missing the point. There is no such thing as 'cl

Re: [PHP] Re: php and print

2004-10-12 Thread Jason Wong
On Wednesday 13 October 2004 03:57, Harlequin wrote: > I'm also using Hypertext Mark-up Language and Hypertext Pre-processor but > hey - who cares about the TLAs...? Java and Javascript are completely different things. You would be fooling yourself and making a fool of yourself if you think other

Re: [PHP] Re: php and print

2004-10-12 Thread Harlequin
I'm also using Hypertext Mark-up Language and Hypertext Pre-processor but hey - who cares about the TLAs...? -- - Michael Mason Arras People www.arraspeople.co.uk - "Raditha Dissanayake" <[EMAIL PROTECTED]> wrote in message news:[EMAIL

RE: [PHP] Re: php and print

2004-10-11 Thread Steve Murphy
Why not just use CSS? http://www.alistapart.com/articles/goingtoprint/ Steve -Original Message- From: raditha dissanayake [mailto:[EMAIL PROTECTED] Sent: Monday, October 11, 2004 12:23 PM Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Re: php and print Harlequin wrote: >Bruno > >

Re: [PHP] Re: php and print

2004-10-11 Thread raditha dissanayake
Harlequin wrote: Bruno I'm still rather new to PHP so I use client side Java: you are not using java you are using javascript. [CODE] Click Here To Print This Page: [/CODE] That may be os use to you... -- Raditha Dissanayake. ---

  1   2   3   4   >