Re: [PHP] Re: Parsing error when XML version is mentioned

2004-07-26 Thread Justin French
On 26/07/2004, at 7:29 AM, Scrumpy wrote: [EMAIL PROTECTED] (Suresh Manoharan) wrote in news:[EMAIL PROTECTED]: I am getting parse error [Parse error: parse error, unexpected T_STRING on line 1] when I use XML version info. ?xml version=1.0 encoding=utf-8? !DOCTYPE html PUBLIC -//W3C//DTD XHTML

Re: [PHP] How to get all links from a webpage?

2004-07-26 Thread Wudi
On Mon, 26 Jul 2004 11:44:04 +0800 Jason Wong [EMAIL PROTECTED] wrote: On Monday 26 July 2004 10:05, Wudi wrote: Thank you. I have found a method to get links. But it's slow. The script replaced the links, marked it. And then foreach() all texts were marked. But the blank space always

Re: [PHP] replace value of array by key of array in string variable with pre g_replace()

2004-07-26 Thread Jason Wong
On Monday 26 July 2004 10:09, Turbo wrote: I have array variable and string variable. I want to replace value of array by key of array in string variable with preg_replace(). Example : $message=array( 'name'='My Computer', 'version'='1.0' ); $strValue=I am $name,build version

[PHP] [Fwd: IMPORTANT: Please Verify Your Message]

2004-07-26 Thread EE
What is this? I got this message few times from php.net... ---BeginMessage--- Title: Verify Email Hello [EMAIL PROTECTED] , [EMAIL PROTECTED] is currently protecting themselves from receiving junk mail using Spamcease Just this once, click the link below so I can receive your emails. You

Re: [PHP] Re: If...Or...Else

2004-07-26 Thread Thomas Goyne
On Mon, 26 Jul 2004 11:11:21 +0300, Skippy [EMAIL PROTECTED] wrote: Quoting Thomas Goyne [EMAIL PROTECTED]: On Sun, 25 Jul 2004 23:15:41 +0300, Skippy [EMAIL PROTECTED] wrote: Any idea why the need to have two logical operators with the same meaning BUT different precedences? I dig the need to

RE: [PHP] Re: If...Or...Else

2004-07-26 Thread Ford, Mike [LSS]
On 25 July 2004 21:16, Skippy wrote: Any idea why the need to have two logical operators with the same meaning BUT different precedences? I dig the need to put in OR as an alias, but why confuse people with the precedence issue? One would tend to think || and OR are perfectly

RE: [PHP] Re: Embedding JavaScript into a PHP generated web page

2004-07-26 Thread Ford, Mike [LSS]
On 26 July 2004 01:13, Robert Frame wrote: OK, now I am bewildered again. Sample Code ?php echo 'script language=text/javascript'; script language=JavaScript echo '!-- '; echo 'function myWindow() { alert(javascript from php)}'; echo '//-- /script'; There's no need to echo your

[PHP] Re: Sticky session after session_destroy...

2004-07-26 Thread Jason Barnett
Since you're using cookies, are you remembering to destroy the cookie as well? Check your web browser to see if the cookie is still there - then do your logout script - and then immediately check to see if the cookie is still there. Firefox makes this easy... just another reason why I love that

Re: [PHP] Re: If...Or...Else

2004-07-26 Thread rush
Skippy [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I just wanted to make things clear, because the way you said it above may lead to misinterpretations, such as believing that || makes all the elements in a condition evaluate even if not necessary, which is not true. So OR

Re: [PHP] Regex (Phone Number)

2004-07-26 Thread Burhan Khalid
Albert Padley wrote: I have been struggling with a javascript regex validation for U.S. phone This is a PHP list. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Usng Session Vaiable in WHERE Statement

2004-07-26 Thread Harlequin
Could someone please help me with my syntax here...? $MembersDataQry = SELECT * FROM MembersData WHERE UserID='$_SESSION['logname']'; I get an error on line 2 but can't seem to figure out what I've missed. The variable echoes fine so I know there's a string in there. --

Re: [PHP] Creation of MySQL Database Using PHP

2004-07-26 Thread Harlequin
Marek thanks very much. -- - Michael Mason Arras People www.arraspeople.co.uk - Marek Kilimajer [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Harlequin wrote: Hello. I have a friend who knows less than me about PHP

[PHP] Re: Usng Session Vaiable in WHERE Statement

2004-07-26 Thread Torsten Roehr
Harlequin [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Could someone please help me with my syntax here...? $MembersDataQry = SELECT * FROM MembersData WHERE UserID='$_SESSION['logname']'; I get an error on line 2 but can't seem to figure out what I've missed. The variable

Re: [PHP] Usng Session Vaiable in WHERE Statement

2004-07-26 Thread Chris Hayes
At 13:58 26-7-04, you wrote: Could someone please help me with my syntax here...? $MembersDataQry = SELECT * FROM MembersData WHERE UserID='$_SESSION['logname']'; I get an error on line 2 but can't seem to figure out what I've missed. 1. You have errors with the ' quote: you use it to wrap the

[PHP] [Newbie Guide] For the benefit of new members

2004-07-26 Thread Ma Siva Kumar
=== Please feel free to add more points and send to the list. === 1. If you have any queries/problems about PHP try http://www.php.net/manual/en first. You can download a copy and use it offline also. Please also try

[PHP] Re: Usng Session Vaiable in WHERE Statement

2004-07-26 Thread Daniel Kullik
Hello again, Michael! You ought to read this: http://de.php.net/manual/en/language.types.string.php#language.types.string.parsing Daniel Harlequin wrote: Could someone please help me with my syntax here...? $MembersDataQry = SELECT * FROM MembersData WHERE UserID='$_SESSION['logname']'; I get an

Re: [PHP] Re: Usng Session Vaiable in WHERE Statement

2004-07-26 Thread Daniel Guerrier
Don't argue with machines, just give it what it wants. Just put the session variable in it's own variable and pass that to the sql statement. $logon = $_SESSION['logname']; $MembersDataQry = SELECT * FROM MembersData WHERE UserID='$logon'; --- Daniel Kullik [EMAIL PROTECTED] wrote: Hello

Re: [PHP] Usng Session Vaiable in WHERE Statement

2004-07-26 Thread Jason Davidson
hey, just take the single quotes around the word logname out and you should be ok. Jason On Mon, 26 Jul 2004 12:58:28 +0100, Harlequin [EMAIL PROTECTED] wrote: Could someone please help me with my syntax here...? $MembersDataQry = SELECT * FROM MembersData WHERE

Re: [PHP] Usng Session Vaiable in WHERE Statement

2004-07-26 Thread Afan Pasalic
I think he has to keep the single quotes and add double quotes with dots: $MembersDataQry = SELECT * FROM MembersData WHERE UserID=' .$_SESSION['logname']'. ' ; afan At 09:24 AM 7/26/2004, Jason Davidson wrote: hey, just take the single quotes around the word logname out and you should be ok.

[PHP] php5: domDocument source encoding?

2004-07-26 Thread Andreas Goetz
I'm confused and google couldn't answer :( I'm parsing XML files using domDocument and XPath in php5. Works like a charm. But- how do I know if I need to apply and utf8decode to the data returned from the domDocument? Unlike xml_parser_create the domDocument does not seem to offer an parameter

Re: [PHP] php5: domDocument source encoding?

2004-07-26 Thread Christian Stocker
Hi On Mon, 26 Jul 2004 16:31:38 +0200, Andreas Goetz [EMAIL PROTECTED] wrote: I'm confused and google couldn't answer :( I'm parsing XML files using domDocument and XPath in php5. Works like a charm. But- how do I know if I need to apply and utf8decode to the data returned from the

[PHP] Returned mail: Data format error

2004-07-26 Thread majordomo
The original message was received at Mon, 26 Jul 2004 08:58:34 -0600 from auburn.edu [82.197.96.166] - The following addresses had permanent fatal errors - [EMAIL PROTECTED] - Transcript of session follows - ... while talking to lists.php.net.: MAIL FROM:[EMAIL PROTECTED] 509

Re: [PHP] php5: domDocument source encoding?

2004-07-26 Thread Andreas Goetz
Excellent, thank you. So I should read the document, the do a $doc-encoding = 'ISO-8859-1' before reading any nodedata values to obtain ISO characters?! As documentation hasn't caught up with $doc-encoding, how could I've found out myself? Thanks again for the quick help, Andreas Christian

Re: [PHP] Usng Session Vaiable in WHERE Statement

2004-07-26 Thread Jonathan Haddad
Remember you can always use curly braces.. SELECT * from MembersData WHERE UserID = '{$_SESSION['logname']}' works just fine Jonathan Haddad Afan Pasalic wrote: I think he has to keep the single quotes and add double quotes with dots: $MembersDataQry = SELECT * FROM MembersData WHERE UserID='

Re: [PHP] php5: domDocument source encoding?

2004-07-26 Thread Christian Stocker
On Mon, 26 Jul 2004 17:18:48 +0200, Andreas Goetz [EMAIL PROTECTED] wrote: Excellent, thank you. So I should read the document, the do a $doc-encoding = 'ISO-8859-1' before reading any nodedata values to obtain ISO characters?! No, if you access the nodeData with for example -nodeValue, it's

Re: [PHP] Refer a class

2004-07-26 Thread Justin Patrin
On Sun, 25 Jul 2004 20:00:18 +0200, Michael Ochs [EMAIL PROTECTED] wrote: I can call $myclass-module['mymodule']-variable; so I think the class is instantiate correctly. But the reference doesn't seem to work, cause the variable I get ist always the same: $myclass-nickname = xyz; $class2 =

Re: [PHP] Refer a class

2004-07-26 Thread Jason Davidson
What version of PHP is this, in php 5, all classes are passed by reference by default i beleive. Jason On Sun, 25 Jul 2004 20:00:18 +0200, Michael Ochs [EMAIL PROTECTED] wrote: I can call $myclass-module['mymodule']-variable; so I think the class is instantiate correctly. But the reference

[PHP] Returned mail: see transcript for details

2004-07-26 Thread ipaq-request
05P$¯~íš/R4{œßŸ–BPYe-ÅÎÓ²i‡ºç¦#ðVÙWÀÊ £¬B^p½Fâk„hXI¼NœrhNE·Š-ù–Úb纟QîOõmÑNÓ_ÞíìÌn .òž1¼ñAÂâÔ_ð^®0rLháç”R­yýw”®·®—DKRÅ5¢Ü©mǍ¾·yÄMW:œø“4Ï4ã—Ï’Ó ~61öÀXŒsìøÒQۆ6yé ´ÇËËËG‡ˆI)¬‡Ÿíê~ „[UNýaÊSIÌågŒ ùb ¤‰ P~žÈEV86L| ‰‘Ô’P%TðWÆVwéÌá

[PHP] - operator and :: (formal names?)

2004-07-26 Thread Katie Marquez
Hi! I did a search of the PHP manual for these: - and :: I know what they are used for, but what I don't know is what they are formally called. Can someone tell me what they are called (short of using the symbol in the name)? The PHP manual's search engine returns me (among others)the Chapter

[PHP] Problem with PEAR DB MySQLi

2004-07-26 Thread Rodolfo Gonzalez Gonzalez
Hi, I'm trying to use PEAR's DB class with the new PHP 5 MySQLi support on MySQL 4.1.3, using this example from the PEAR's docs (with my parameters of course). I'm getting DB unknown error messages after the query. The same query from the mysql client works fine, there are no connection

Re: [PHP] Fwd: IMPORTANT: Please Verify Your Message

2004-07-26 Thread Justin Patrin
On Sun, 25 Jul 2004 19:05:38 -0700 (PDT), Mark [EMAIL PROTECTED] wrote: --- Jason Wong [EMAIL PROTECTED] wrote: On Sunday 25 July 2004 09:42, Mark wrote: Am I the only one who gets annoyed at these? No you're not. Look in the past week's archives. [EMAIL PROTECTED], [EMAIL

Re: [PHP] [Fwd: IMPORTANT: Please Verify Your Message]

2004-07-26 Thread Justin Patrin
On Mon, 26 Jul 2004 11:27:32 +0300, EE [EMAIL PROTECTED] wrote: What is this? I got this message few times from php.net... Well, that's weirdI've never seen that one. -- DB_DataObject_FormBuilder - The database at your fingertips http://pear.php.net/package/DB_DataObject_FormBuilder

Re: [PHP] Re: PHP editor that doesn't require installation

2004-07-26 Thread barophobia
On Sat, 24 Jul 2004 16:37:03 +0200, rush [EMAIL PROTECTED] wrote: scite, from the scintilla fame. TemplateTamer would also work fine if you just copy the whole directory wow. that's a pretty awesome editor. too bad it can't connect to FTP sites. all my files are remote! anyone have a work

[PHP] Retrieve The Last Record in a Table

2004-07-26 Thread Harlequin
I would like to retrieve the last entry in a login table and present that to a user so they can verify the date we have when they last logged in. Is this possible...? -- - Michael Mason Arras People www.arraspeople.co.uk - -- PHP

RE: [PHP] Retrieve The Last Record in a Table

2004-07-26 Thread Jay Blanchard
[snip] I would like to retrieve the last entry in a login table and present that to a user so they can verify the date we have when they last logged in. Is this possible...? [/snip] yes, http://catb.org/~esr/faqs/smart-questions.html -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] Retrieve The Last Record in a Table

2004-07-26 Thread bbonkosk
I'm sure there are many ways to do this. Perhaps use something like this as a query? select * from login_table order by DATE_LAST_LOGGED_IN ASC limit 1 - Original Message - From: Harlequin [EMAIL PROTECTED] Date: Monday, July 26, 2004 1:27 pm Subject: [PHP] Retrieve The Last Record in

[PHP] What is the PHP5 eqvivalent to domxml_open_mem in PHP4?

2004-07-26 Thread Erik Franzén
The docs for PHP5 and dom xml is not written yet, so I tried to find information about load and save methods on the w3c site, but I didn't find anything. What's is the PHP5 eqvivalent to domxml_open_mem in PHP4? /Erik -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Retrieve The Last Record in a Table

2004-07-26 Thread Jason Davidson
as mentioned already, use a column in the table to order the query and then use LIMIT to only to return one record. Best columns to use would be an auto_increment or a datetime field type. Jason On Mon, 26 Jul 2004 18:27:25 +0100, Harlequin [EMAIL PROTECTED] wrote: I would like to retrieve

RE: [PHP] - operator and :: (formal names?)

2004-07-26 Thread Michael Sims
Katie Marquez wrote: Hi! I did a search of the PHP manual for these: - and :: I know what they are used for, but what I don't know is what they are formally called. Can someone tell me what they are called (short of using the symbol in the name)? I don't know what PHP's official name

[PHP] Re: Problem with PEAR DB MySQLi

2004-07-26 Thread Torsten Roehr
Rodolfo Gonzalez Gonzalez [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, I'm trying to use PEAR's DB class with the new PHP 5 MySQLi support on MySQL 4.1.3, using this example from the PEAR's docs (with my parameters of course). I'm getting DB unknown error messages after the

Re: [PHP] URGENT: Space char in rewriterule

2004-07-26 Thread Curt Zirzow
* Thus wrote Robert Winter: I have the following rewriterule: RewriteRule ^(([0-9]|[A-Z]|[a-z]|_)+)$ redirect.php?$1 [L] And why is this so more urgent than any other email? and what does any of this have to any thing to do with PHP? perhaps you meant 'OT:' that transforms

Re: [PHP] What is the PHP5 eqvivalent to domxml_open_mem in PHP4?

2004-07-26 Thread Christian Stocker
On Mon, 26 Jul 2004 19:19:56 +0200, Erik Franzén [EMAIL PROTECTED] wrote: The docs for PHP5 and dom xml is not written yet, yes they are: http://www.php.net/dom so I tried to find information about load and save methods on the w3c site, but I didn't find anything. You didn't look good

[PHP] Is there a brian I can pick?

2004-07-26 Thread Tom Ray [Lists]
Hey all- I've run into a small bump in some code I'm writing for a membership database. The first thing that needs to be done is an index of all states in the US with members. The fun part is that the state information is stored as the abbreviation in the database (ie MI, WI) and the HTML page

Re: [PHP] Is there a brian I can pick?

2004-07-26 Thread Matt M.
I need to kill that extra Texas and Virgina.here's how I'm doing this: table border=1 ? $query=mysql_query(SELECT DISTINCT state FROM members WHERE country='US' ORDER BY state ASC); while($q=mysql_fetch_array($query)) { $q1=mysql_fetch_array($query); $q2=mysql_fetch_array($query);

Re: [PHP] - operator and :: (formal names?)

2004-07-26 Thread Curt Zirzow
* Thus wrote Katie Marquez: Hi! I did a search of the PHP manual for these: - and :: as far as the :: is, its name (in php): The Paamayim Nekudotayim. Paamayim Nekudotayim would, at first, seem a strange choice for a double-colon. However, at the time of writing of Zend Engine 0.5

Re: [PHP] Regex (Phone Number)

2004-07-26 Thread Curt Zirzow
* Thus wrote Albert Padley: I have been struggling with a javascript regex validation for U.S. phone numbers all afternoon. This is part of Manuel Lemos' Formsgen class. This is limited to the 7 digit number sans 3 digit area code. To be complete, the regex should disallow a phone number

Re: [PHP] Is there a brian I can pick?

2004-07-26 Thread Philip Olson
I've run into a small bump in some code I'm writing for a membership database. The first thing that needs to be done is an index of all states in the US with members. The fun part is that the state information is stored as the abbreviation in the database (ie MI, WI) and the HTML page

[PHP] JavaScript conversion to PHP code...

2004-07-26 Thread Scott Fletcher
Hi, what is in your opinion is the best way to convert from JavaScript to PHP What I'm not entirely sure of is the char_set.indexOf(input.charAt()). It look pretty tricky --snip-- var algorithm = 8; for (loop=0; loopinput.length; loop++) { //search char_set

Re: [PHP] - operator and :: (formal names?) (RESOLVED)

2004-07-26 Thread Mike Dichirico
Michael and Curt, Thank you very much with your time and promptness. You both have been very helpful. Kind regards, Katie - Original Message - From: Curt Zirzow [EMAIL PROTECTED] To: php [EMAIL PROTECTED] Sent: Monday, July 26, 2004 1:12 PM Subject: Re: [PHP] - operator and :: (formal

[PHP] Re: JavaScript conversion to PHP code...

2004-07-26 Thread Scott Fletcher
I think maybe this will do the trick.. --snip-- $char_code = strpos($char_set,(substr($input,$loop,1))); --snip-- FletchSOD Scott Fletcher [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, what is in your opinion is the best way to convert from JavaScript to PHP What I'm not

Re: [PHP] Re: JavaScript conversion to PHP code...

2004-07-26 Thread Matt M.
--snip-- $char_code = strpos($char_set,(substr($input,$loop,1))); --snip-- even a little shorter $char_code = strpos($char_set,$input{$loop}); -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: PHP editor that doesn't require installation

2004-07-26 Thread Justin Patrin
On Mon, 26 Jul 2004 10:20:56 -0700, barophobia [EMAIL PROTECTED] wrote: On Sat, 24 Jul 2004 16:37:03 +0200, rush [EMAIL PROTECTED] wrote: scite, from the scintilla fame. TemplateTamer would also work fine if you just copy the whole directory wow. that's a pretty awesome editor. too bad

Re: [PHP] Refer a class

2004-07-26 Thread Michael Ochs
It's being copied somewhere. Maybe try this in the loadModule function: $this-module[$name] = new $name($this); You don't need the for $this as you've defined the function to send it by reference. It doesn't work, either. But I think maybe the problem is somewhere else, it seems that this

Re: [PHP] Problem with PEAR DB MySQLi

2004-07-26 Thread Justin Patrin
On Mon, 26 Jul 2004 12:18:37 -0500 (CDT), Rodolfo Gonzalez Gonzalez [EMAIL PROTECTED] wrote: Hi, I'm trying to use PEAR's DB class with the new PHP 5 MySQLi support on MySQL 4.1.3, using this example from the PEAR's docs (with my parameters of course). I'm getting DB unknown error messages

RE: [PHP] Is there a brian I can pick?

2004-07-26 Thread Robert Sossomon
It looks like you need to reset the $state variables each loop through so that they are all empty, hence when you get to west virginia and wisconsin they are but empties behind them Heck, personally I'd just add another cell to the table and make it have the full name in, then just use that

Re: [PHP] Is there a brian I can pick?

2004-07-26 Thread Jason Davidson
Hey, an alternative to your switch statement, is to have an associative array with the full State names in it like this ... $states = array('MI'='Michigan'); and so forth. then just uses it in your html.. $states['$state']; Jason On Mon, 26 Jul 2004 15:28:11 -0400, Tom Ray [Lists] [EMAIL

Re: [PHP] JavaScript conversion to PHP code...

2004-07-26 Thread Curt Zirzow
* Thus wrote Scott Fletcher: Hi, what is in your opinion is the best way to convert from JavaScript to PHP What I'm not entirely sure of is the char_set.indexOf(input.charAt()). It look pretty tricky Sometimes a whole complete approach can be done: --snip-- var

Re: [PHP] Is there a brian I can pick?

2004-07-26 Thread Brian Dunning
I'm a Brian, but you can't pick me unless you're a really hot chick. - Brian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re[2]: [PHP] Re: PHP editor that doesn't require installation

2004-07-26 Thread Tom Rogers
Hi, Tuesday, July 27, 2004, 7:40:25 AM, you wrote: JP Edit locally and FTP manually. JP Or get some kind of mounted FTP filesystemdoesn't Windows XP have JP something like this built in? JP -- JP DB_DataObject_FormBuilder - The database at your fingertips JP

[PHP] Extra byte added to PDF streaming file

2004-07-26 Thread Scott Taylor
I'm using this code to stream a PDF file: $file = $_SERVER['DOCUMENT_ROOT'] . /file.pdf; simple_streamfile($file); function simple_streamfile($file) { $fp = fopen($file, 'rb'); // send the right headers header(Content-Type: application/pdf); header(Content-Length: .

[PHP] PHP vs. Java

2004-07-26 Thread Ed Lazor
Any comments or opinions on pros and cons, especially in terms of stability, security, and future upgradability? I know this is probably one of those religious war topics, but I'd still like your feedback. -Ed

Re: [PHP] Extra byte added to PDF streaming file

2004-07-26 Thread Larry E . Ullman
It appears as though some readers (such as adobe acrobat) can read this file fine yet others (such as the program gv in *NIX) cannot read it. The reason for this is that somehow a hex 0A is added before the inital %PDF-1.2 which marks the start of the PDF file causing some readers to not

Re: [PHP] Extra byte added to PDF streaming file

2004-07-26 Thread Curt Zirzow
* Thus wrote Scott Taylor: $fp = fopen($file, 'rb'); // send the right headers header(Content-Type: application/pdf); header(Content-Length: . filesize($file)); // dump the file and stop the script fpassthru($fp); ... The reason for this is that somehow a hex 0A is

Re: [PHP] PHP vs. Java

2004-07-26 Thread raditha dissanayake
Ed Lazor wrote: Any comments or opinions on pros and cons, especially in terms of stability, security, and future upgradability? This is a a religious war topic. Horses for course but in this list of PHP fanatics you should expect only one answer - PHP is better for web applications - no

[PHP] php 5 DOM tutorials / examples?

2004-07-26 Thread Ed Lazor
Any recommendations on books, links, tutorials, etc. for PHP 5's new DOM / XML stuff? Thanks, Ed

[PHP] Re: [Fwd: IMPORTANT: Please Verify Your Message]

2004-07-26 Thread Chris Martin
Justin Patrin wrote: On Mon, 26 Jul 2004 11:27:32 +0300, EE [EMAIL PROTECTED] wrote: What is this? I got this message few times from php.net... Well, that's weirdI've never seen that one. Apparently they're from an annoying spam service that someone on this list has subscribed to and not

Re: [PHP] Re: [Fwd: IMPORTANT: Please Verify Your Message]

2004-07-26 Thread Curt Zirzow
* Thus wrote Chris Martin: Justin Patrin wrote: On Mon, 26 Jul 2004 11:27:32 +0300, EE [EMAIL PROTECTED] wrote: What is this? I got this message few times from php.net... Well, that's weirdI've never seen that one. Apparently they're from an annoying spam service that someone

Re: [PHP] [Fwd: IMPORTANT: Please Verify Your Message]

2004-07-26 Thread Curt Zirzow
* Thus wrote EE: What is this? I got this message few times from php.net... This isn't a message from php.net, it appears to be someone attempting to harvest valid emails. I would suggest to report this message including all the headers but it doesn't appear they provide anyway to do such a

Re: [PHP] Is there a brian I can pick?

2004-07-26 Thread Oliver John V. Tibi
Brian, pardon the typo, but maybe he's looking for a brain. *chuckles*. :) -- Running 'ojtibi' on '127.0.0.1' (BATCH_OPTIMISTIC mode). Live free() or die(). Brian Dunning [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I'm a Brian, but you can't pick me unless you're a really hot

Re: [PHP] URGENT: Space char in rewriterule

2004-07-26 Thread Robert Winter
It didn't work. Still the same problem. Thanks Marek Kilimajer [EMAIL PROTECTED] escribió en el mensaje news:[EMAIL PROTECTED] Robert Winter wrote: I have the following rewriterule: RewriteRule ^(([0-9]|[A-Z]|[a-z]|_)+)$ redirect.php?$1 [L] that transforms http://mysite.com/XXX to

[PHP] issue a value on header, not working..

2004-07-26 Thread Louie Miranda
This outputs a filename on $catchresult, and im working on redirecting it to that file via header. But when ever i run this the value of $catchresult is not being pass to the header() on php. $catchresult = $db_view-getOne($getfile); header('Location: clients/FILES/$catchresult'); Hmm, it seems

Re: [PHP] issue a value on header, not working..

2004-07-26 Thread zareef ahmed
--- Louie Miranda [EMAIL PROTECTED] wrote: This outputs a filename on $catchresult, and im working on redirecting it to that file via header. But when ever i run this the value of $catchresult is not being pass to the header() on php. $catchresult = $db_view-getOne($getfile);

Re: [PHP] php 5 DOM tutorials / examples?

2004-07-26 Thread Christian Stocker
On Mon, 26 Jul 2004 18:02:51 -0700, Ed Lazor [EMAIL PROTECTED] wrote: Any recommendations on books, links, tutorials, etc. for PHP 5's new DOM / XML stuff? Answered some hours ago here on this list See http://news.php.net/php.general/191907 (there's certainly more ;) ) chregu -- christian