Re: [PHP] learning resources for PHP

2012-04-18 Thread Henry Martinez
myself going back to the book for reference constantly as I do my own php medium size project as a learning experience =) Also, the code samples and explanations are top notch, and you come to really understand what it is you're doing.. so that's my 2 cents! -Henry A. -- PHP General Mailing

[PHP] PHP setup

2008-02-07 Thread Louie Henry
Good Day All I am running windows xp pro and using built in IIS as my web-server. And I installed PHP 5.2.5. I also installed MySQL 5.0.37. Now PHP is working, how ever I having problems with the configuration with MySQL. I used phpinfo(), and I notice this doc_root no value

Re: [PHP] Paged Results Set in MySQL DB with one result

2006-05-12 Thread Joe Henry
but next/previous buttons produce no results) Blank: none that I tested Don't have Firefox on the Mac box. I just clicked the next/previous buttons a few times, so take it for what's it's worth. Thanks to you Tedd. Made me realize I should upgrade my Linux Firefox. HTHs. -- Joe Henry

Re: [PHP] remove html tags in text?

2006-05-11 Thread Joe Henry
On Thursday 11 May 2006 9:51 am, Bing Du wrote: Any functions that can help remove all the HTML tags in it? What about just removing selected tags, like b/b? Looks like strip_tags() will do the trick for you: http://us3.php.net/manual/en/function.strip-tags.php -- Joe Henry

Re: [PHP] BDC to ASCII Conversion

2006-05-11 Thread Joe Henry
On Thursday 11 May 2006 10:08 am, Jim Moseby wrote: In dog we trust Am partial to Dog is my co-pilot -- Joe Henry www.celebrityaccess.com [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] question about using temporary named pipe in the string for system

2006-05-10 Thread Joe Henry
. I've been googling around without much help. Could anyone plz give me some hint? Thanks a lot ginger Think you might want the shell_exec() command instead. http://us2.php.net/manual/en/function.shell-exec.php HTH -- Joe Henry www.celebrityaccess.com [EMAIL PROTECTED] -- PHP

Re: [PHP] WINNER

2006-05-08 Thread Joe Henry
. That would be, like, a latte or beer each. Yippee! -- Joe Henry www.celebrityaccess.com [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Sanity checker?

2006-05-03 Thread Joe Henry
On Tuesday 02 May 2006 6:14 pm, Ezra Nugroho wrote: Does anyone know of any tools to test the sanity of your php code? This sounds an awful lot like the Halting Problem to me, which isn't solvable. http://en.wikipedia.org/wiki/Halting_Problem -- Joe Henry www.celebrityaccess.com [EMAIL

Re: [PHP] Using linkDisplayFields of FormBuilder

2006-04-26 Thread Joe Henry
-- Joe Henry www.celebrityaccess.com [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Preg_match() regex

2006-04-21 Thread Joe Henry
/reference.pcre.pattern.syntax.php -- Joe Henry www.celebrityaccess.com [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: no offense to Rasmus... are you kidding me

2006-04-20 Thread Joe Henry
On Thursday 20 April 2006 1:18 am, Richard Lynch wrote: Is 5 longer than 4? Size doesn't matter. At least that's what I've been told. ;) -- Joe Henry www.celebrityaccess.com [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Pushing PHP Into The Web 2.0 Generation

2006-04-18 Thread Joe Henry
development and war in the same sentence. Killer! -- Joe Henry www.celebrityaccess.com [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Post forms

2006-04-14 Thread Joe Henry
type=checkbox name=array[] value=... / input type=checkbox name=array[] value=... / input type=checkbox name=array[] value=... / etc. Then in your PHP script, $_POST['array'] will hold an array of the checkbox values. HTH -- Joe Henry www.celebrityaccess.com [EMAIL PROTECTED] -- PHP General

Re: [PHP] interview

2006-04-13 Thread Joe Henry
-- Joe Henry www.celebrityaccess.com [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Argument passed by reference?

2006-04-10 Thread Joe Henry
not sure when this happened. I'm fairly new to php, myself. Maybe someone else could answer that? -- Joe Henry www.celebrityaccess.com [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Parse Error on SQL Insert

2006-04-07 Thread Joe Henry
On Friday 07 April 2006 1:37 pm, Tom Chubb wrote: $insertSQL = INSERT INTO cars (model, `year`, details, price, image1, Not sure if this is your problem, but those look like backticks around year instead of single quotes. Should there even be quotes there? HTH -- Joe Henry

Re: [PHP] Parse Error on SQL Insert

2006-04-07 Thread Joe Henry
['model']}' Dan --- http://chrome.me.uk -Original Message- From: Joe Henry [mailto:[EMAIL PROTECTED] Sent: 07 April 2006 20:53 To: php-general@lists.php.net; [EMAIL PROTECTED] Subject: Re: [PHP] Parse Error on SQL Insert On Friday 07 April 2006 1:37 pm, Tom Chubb

Re: [PHP] simple regex query

2006-04-06 Thread Joe Henry
, and Javascript. Don't know how useful this is, but thought I'd throw it into this thread. http://rexv.org/ -- Joe Henry www.celebrityaccess.com [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Argument passed by reference?

2006-04-06 Thread Joe Henry
. Something like: function foo ($bar) { ... } Here's a link to that section of the php manual: http://us3.php.net/manual/en/language.references.pass.php Hope that helps. -- Joe Henry www.celebrityaccess.com [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] Download image in PHP

2006-04-05 Thread Joe Henry
keep taxing the image server). I allow the file() command to pull from other sites, can I do this with just the file('http://www.site.com/image.jpg;); - or how would i do this? Russ You might want to look at CURL, too. http://us2.php.net/manual/en/ref.curl.php -- Joe Henry

Re: [PHP] Can output_buffering be set in a script?

2006-03-30 Thread Joe Henry
On Thursday 30 March 2006 9:02 am, Todd Cary wrote: I do not have access to the php.ini file and I need to have output_buffering turned on. Can this be done within a script? Thank you Yep. http://us2.php.net/manual/en/function.ob-start.php That link should get you started. -- Joe Henry

Re: [PHP] White label with PHP?

2006-03-30 Thread Joe Henry
On Wednesday 29 March 2006 9:52 am, Merlin wrote: white label solution Can someone enlighten me as to what this means? Thanks. -- Joe Henry www.celebrityaccess.com [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] private $foo

2006-03-28 Thread Joe Henry
; echo $f-foo,\n; Maybe I'm wrong, but I thought you couldn't use the $f-foo to access private variables from outside a class? -- Joe Henry www.celebrityaccess.com [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] where php at?

2006-03-27 Thread Joe Henry
(just in case): http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html Syntax for ssh: ssh user account@hostname/IP Once you have an ssh session open to your remote server, running which php will return the remote path for php. Hope that helps. -- Joe Henry www.celebrityaccess.com [EMAIL

Re: [PHP] IE quirk

2006-03-17 Thread Joe Henry
if the the page contains a reference to img src= with name and id references (which may be used if the image is referencing a dynamic image, called by javascript) This seems to casue IE6 to refresh the page session id and hence loose the session. [/quote] -- Joe Henry www.celebrityaccess.com [EMAIL

Re: [PHP] What am I missing?

2006-03-07 Thread Joe Henry
/form You could try using an absolute rather than a relative path: /mobilkamera/admin/phpfunctions/addnewmanufacturer.php -- Joe Henry www.celebrityaccess.com [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] LIMIT?

2006-02-06 Thread Joe Henry
On Feb 6, 2006, at 12:11 PM, James Kaufman wrote: Answers that show SQL commands that apply to specific databases annoy me. Not everyone uses MySQL. I've worked with several databases that don't support a LIMIT command. At least mention the database engine you are referencing. Response like

Re: [PHP] Getting The Document Root

2006-02-02 Thread Joe Henry
you could try pathinfo() http://us3.php.net/pathinfo On Feb 2, 2006, at 8:59 AM, Jeremy Privett wrote: John Nichel wrote: $_SERVER['DOCUMENT_ROOT'] http://www.php.net/manual/en/ reserved.variables.php#reserved.variables.server Nope. I've already tried that... $_SERVER['DOCUMENT_ROOT']

Re: [PHP] Help retrieving an HTML array

2006-02-01 Thread Joe Henry
The input name must include [] (brackets) to let php know it's an array. Ex: input type=text name=xname[] value=3303 On Feb 1, 2006, at 9:07 AM, Mauricio Pellegrini wrote: Hi , I have a HTML page with a form in which there are some inputs like these: input type=text name=xname

[PHP] operators

2005-12-28 Thread Henry Krinkle
I have some experience with PHP, but not with these operators: - = Can someone explain how they are working in this snippet from Yahoo's search API foreach($xml-Result[$i] as $key=$value) I don't see anything about them in the Array Operators documentation.. Thanks

[PHP] Re: Can't execute external program

2005-11-27 Thread Henry Castillo
Hi, Thank you, after a frustrating month the problem was solved. My system had SElinux blocking that.. no php, apache or file permissions. Something else to keep in mind. Henry On 11/24/05, n.g. [EMAIL PROTECTED] wrote: put the executable into another directory rather than DOC_ROOT, maybe you

[PHP] Re: Can't execute external program

2005-11-23 Thread Henry Castillo
is the php I've created, fairly simple: ?php exec(/var/www/html/myprog -E 123456789098.dat sample1.txt sample1.new); phpinfo(); ? On 11/22/05, n.g. [EMAIL PROTECTED] wrote: is /var/www/html your web root dir ? maybe its the plobrem. On 11/23/05, Henry Castillo [EMAIL PROTECTED] wrote

[PHP] Re: Can't execute external program

2005-11-23 Thread Henry Castillo
I added 21 but still nothing... as a matter of fact it won't execute anything. I put echo exec('asdf'); and nothing happend either ( i should've echoed an error) However it'll execute some other commands echo exec('ls -lart'); will output correctly. Any ohter Idea? Henry

[PHP] Re: Can't execute external program

2005-11-22 Thread Henry Castillo
That was on of the first things I checked: safe mode is set to off Any ideas... Henry Voip tech said the following on 11/20/2005 10:31 PM: Hello, I cannot get exec(), system() or passthru() to run an extenal program. From the command line it runs perfectly: snip I'm getting frustrated

[PHP] Re: Running a PHP script on an automated regular schedule

2004-07-12 Thread Henry Grech-Cini
You may also want to look at wget as a way of invoking your PHP script if command line support is not available. Henry I.A. Gray [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi. I am wanting to use a PHP script to check on an hourly/daily basis on a few things- ie links on my

[PHP] Checking if a website is up?

2004-03-30 Thread Henry Grech-Cini
and thats whats even more confusing). Suggestions? Henry I tried URL's as follows: http://www.microsoft.com/ http://www.microsoft.com function url_reachable( $link ) { $url_parts = @parse_url( $link ); if ( $url_parts[scheme]!=http ) return ( false ); if ( empty

[PHP] Re: Ticketing system

2004-03-23 Thread Henry Grech-Cini
Hi I am using deskpro. see http://www.deskpro.com It's written in PHP, but it is not cheap. From my brief experience I would have to say however that it certainly seems to be worth it. Such a sophisticated ticketing system would take a very significant amount of time to build from scratch. HTH

Re: [PHP] How to make sure a redirect works

2004-03-11 Thread Henry Grech-Cini
abide by 1,23 it should work with all (most) browsers Thanks for all the help Henry. Christophe Chisogne [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Vincent Jansen wrote: If you output a location header then I don't know what the browser will do with text sent after

[PHP] Loosing $_SESSION vars somewhere...

2004-03-11 Thread Mark Henry
suddenly disappears then I pop an error to the user and write the event to a text file on the server. This is okay as a stop-gap, but I need to track down what's causing the problem in the first place. Any ideas? tia Mark H -- Mark Henry Enterprises, Inc. Phone/Fax: (704)721-6685 [EMAIL PROTECTED

[PHP] How to make sure a redirect works

2004-03-10 Thread Henry Grech-Cini
='noresize'/ /frameset NOFRAMES BODY Your browser appears not to support any form of automatic redirect. Pleasea href=?php echo $url[$index]; ?click here/a to be redirected to the web site. /BODY /NOFRAMES /HTML Any comments or suggestions would be greatly appreciated. Henry -- PHP General Mailing

[PHP] Re: Are $_POST and $_GET interchangable?

2004-03-10 Thread Henry Grech-Cini
, no form ID; break; } ? input type=submit/ /form you could imagine calling this as follow: http://www.yoursite.com/form.php?formid=1 or http://www.yoursite.com/form.php?formid=2 HTH Henry David Jackson [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I understand

[PHP] Re: Warning: Cannot modify header information - headers already sent by (output sta

2004-03-10 Thread Henry Grech-Cini
Hi The problem is that the header requires that no output be generated by your script before it is invoked. It makes this clear in the error message when it indicates that on line 6 you produced output! Try this instead (although the code seems a little confused). ?php session_start();

Re: [PHP] renamed images are now corrupt...

2004-02-26 Thread Bryan Henry
Browser and FTP client act as if the image files do not exist, even though the directory contents can be views via FTP... What did I do? Bryan On Thu, 26 Feb 2004 17:56:25 -0600, Bryan Henry [EMAIL PROTECTED] wrote: Hello all, I wrote a small script to rename a few thousand images, both

Re: [PHP] Re: renamed images are now corrupt...

2004-02-26 Thread Bryan Henry
, especially if you ran the script as some privileged user like root. chmod or chown can be used to changed these. Mike Bryan Henry wrote: Browser and FTP client act as if the image files do not exist, even though the directory contents can be views via FTP... What did I do? Bryan On Thu, 26 Feb

Re: [PHP] renamed images are now corrupt...

2004-02-26 Thread Bryan Henry
Here is the script I used to rename images. ?php clearstatcache(); $filename = product_tn.txt; $imgs = (array) null; $tmp = (array) null; $config = file($filename); reset ($config); $handle = fopen(import_product_tn.txt, w); $write = ; foreach ($config as $line) { if ( $line == )

Re: [PHP] renamed images are now corrupt...

2004-02-26 Thread Bryan Henry
Chmod and file_exists report that the file does not exist, even though I can view the files via the FTP client. bryan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: renamed images are now corrupt...

2004-02-26 Thread Bryan Henry
On Fri, 27 Feb 2004 00:01:47 +, Michael Nolan [EMAIL PROTECTED] wrote: Check the permissions and ownership of the files, especially if you ran the script as some privileged user like root. chmod or chown can be used to changed these. Mike Bryan Henry wrote: Browser and FTP client act

[PHP] renamed images are now corrupt...

2004-02-26 Thread Bryan Henry
images can be downloaded as binary files with no problem.. I now have over 3000 images I cannot download or view on our website. What about rename caused this? Thank you, Bryan Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] regexp appears to be faulty!?

2004-02-25 Thread Henry Grech-Cini
Absolutely brilliant, also I'm using the /s modifier to process newlines as well. Great Thanks to everybody for their help. Jome [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Henry Grech-Cini [EMAIL PROTECTED] skrev i meddelandet news:[EMAIL PROTECTED] Thanks for that Mike

[PHP] regexp appears to be faulty!?

2004-02-24 Thread Henry Grech-Cini
Hi All, function extractFieldsets($subject) { $regexp=/fieldset([^]*)[^(\/fieldset)]*/i; $replacement; $matches=array(); preg_match_all($regexp, $subject, $matches); return ($matches); } $result=extractFieldsets('testfieldset attribute=hellocontent of

[PHP] Re: regexp appears to be faulty (DONT actually think so)

2004-02-24 Thread Henry Grech-Cini
Hi All, I don't actually think regexp is fault. But if anyone could explain this or give me some example code that will extract the attributes and data between a fieldset tag pair I would be appreciated. Henry Henry Grech-Cini [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi All

[PHP] Re: regexp appears to be faulty (DONT actually think so)

2004-02-24 Thread Henry Grech-Cini
)=[ attribute=hello] (2)= (0)=[legendhello legend/legendcontent of hello/fieldsetemblah/emfieldset attribute=goodbyegoodbye] as we can see the second fieldset is included in that which is between the fieldset tags! :-( Thanks everyone for you help including Mike (with the post out of chain). Henry

Re: [PHP] regexp appears to be faulty!?

2004-02-24 Thread Henry Grech-Cini
Thanks for that Mike, I was getting lost. Is there anyway to say Any characters excluding the sequence /fieldset so I could do something like /fieldset([^]*)(.* whilst not \/fieldset)\/fieldset/i Or alternatively is there a switch to say get the smallest sequence Thanks Henry Mike Ford

[PHP] Re: regexp appears to be faulty!?

2004-02-24 Thread Henry Grech-Cini
I came accross this link a href= http://www.alpha-geek.com/2003/12/31/do_not_do_not_parse_html_with_regexs.html http://www.alpha-geek.com/2003/12/31/do_not_do_not_parse_html_with_regexs.html /a Do we all agree or should I keep trying? Henry -- PHP General Mailing List (http://www.php.net

Re: [PHP] How to solve include_path / safe_mode / open_basedir /document_root

2003-06-26 Thread Adam Henry
PHP4: 4.3.2 Likewise, my intention is to restrict the user within '/home/ahank/public_html' when using fopen(), but allow the user to use include() on files in '/usr/local/share/wl'. Here is my VirtualHost config: php_admin_flag register_globals Off php_admin_flag safe_mode On

[PHP] including files with open_basedir restriction

2003-06-25 Thread Adam Henry
In response to the post found at: http://marc.theaimsgroup.com/?l=php-generalm=104913671122253w=2 I would like to use open_basedir to stop users from reading the contents of system files, while using include/require to let users take advantage of scripts that I have created. These scripts

[PHP] callback function via preg_replace_callback

2003-06-08 Thread Henry H. Tan-Tenn
Hi, I have Function A containing a preg_replace_callback calling Function B. The code works quite nicely. Now, is there a way for the callback function (B) to receive *additional* arguments (from A), so that, for example, it may optionally perform additional tasks? If not, is there a way for B

[PHP] circumventing SAFE MODE Restriction

2003-04-03 Thread Henry Grech-Cini
a picture! $d = dir(.\downloads); echo Handle: .$d-handle.br\n; echo Path: .$d-path.br\n; while (false !== ($entry = $d-read())) { echo $entry.br\n; } $d-close(); ? /body /html Any ideas about how to get round this other than making a .php file to call in the subdirectory? TIA Henry -- PHP

[PHP] using preg_match to extract information from pop3

2003-03-04 Thread Henry Grech-Cini
Hi All, I know that you will probably tell me to RTFM but I have (several times) and I cannot quite understand it! So failing that I turn to you for help. I know that this is very trivial but please humour me. I have a line containing From: Henry henry @ .com (please ignore any spaces

[PHP] Re: using preg_match to extract information from pop3

2003-03-04 Thread Henry Grech-Cini
Hi All, This has to be easy to do using preg_match! Can no one spare a minute of their time? Henry Henry Grech-Cini [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi All, I know that you will probably tell me to RTFM but I have (several times) and I cannot quite understand

[PHP] Re: using preg_match to extract information from pop3

2003-03-04 Thread Henry Grech-Cini
I tried if(preg_match(/^From:(.*)$/, $headers[$line], $info)) { echo [; print_r($info); echo ]; echo PRE,HtmlSpecialChars($headers[$line]),/PRE; } But all I get is [Array ( [0] = From: [1] = ) ] From: Henry henry @ .com Any pointers? Henry Grech-Cini [EMAIL

[PHP] Re: using preg_match to extract information from pop3

2003-03-04 Thread Henry Grech-Cini
Found a solution if (preg_match(/Form:[ ]*(.+)[ ]*(.+)/, Form:Henry [EMAIL PROTECTED], $info)) { print_r($info); } else print Pattern not found; but I'm refining it so that it doesn't need the last bit, any more pointers appreciated!!! Thanks All Henry Henry Grech-Cini [EMAIL PROTECTED

[PHP] Session variable under PHP 4.0.6

2003-03-03 Thread Henry Grech-Cini
same code on a machine running PHP 4.2.3 (non secure servers) and it works perfectly! And outputs: Array ( [variable] = the variables value ) --the variables value-- Exactly as required!! I hope that you can help, since I am getting frustrated after 4 days trying to fix this problem. Henry

[PHP] where do you recommend I put useful code for people to use?

2003-03-03 Thread Henry Grech-Cini
is that although its meant for use with PHP it is javascript so I'm not sure where to post it. Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Problems posting

2003-03-03 Thread Henry Grech-Cini
Did you send this post at 17:17 and did it arrive at 17:22? Niels Andersen [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] When I post something here, it first appears several hours later. How can it be so? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Session variable under PHP 4.0.6

2003-03-03 Thread Henry Grech-Cini
of clarification since my actual app still doesn't work! Henry Kirk Johnson [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] In the first file, replace this line: $HTTP_SESSION_VARS['variable']=the variables value; with these two lines: $variable = the variables value; session_register

[PHP] processing pop3 inbox

2003-03-03 Thread Henry Grech-Cini
Hi All, I need to process the inbox. Any pointers, I don't use Perl and would like to use PHP. Also I do not have PHP compiled for a comand line so I'll probably use a crontab and unix text based web browser to invoke the PHP page to process the inbox. TIA Any help much appreciated. Henry

[PHP] Re: PHP shopping carts

2003-03-03 Thread Henry Grech-Cini
Hi, Please let me know if you find one thats any good? Henry Dan Sabo [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, What I'm looking for is either an open source or commercial solution which is supported by either commercial or OS add on modules. I've looked at OS commerce

RE: [PHP] Redirect without header or javascipt

2003-02-19 Thread Henry
with using header? you mean like this-- Header(location: http://url;); -Original Message- From: Daniel Guerrier [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 19, 2003 7:00 AM To: php user group Subject: [PHP] Redirect without header or javascipt Is there any to redirect

[PHP] How do I know alive session at this moment?

2003-01-24 Thread Henry

RE: [PHP] Why PHP doesn't work with Apache2?

2003-01-22 Thread Henry
Apache2 now work with php in aspx (PHP is as a module) -Original Message- From: Jean-Christian Imbeault [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 6:06 PM To: [EMAIL PROTECTED] Subject: [PHP] Why PHP doesn't work with Apache2? I don't want to start a flame-war

RE: [PHP] Why PHP doesn't work with Apache2?

2003-01-22 Thread Henry
, January 22, 2003 7:11 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Why PHP doesn't work with Apache2? Henry wrote: Apache2 now work with php in aspx (PHP is as a module) Really!? I was sure there were still some issues ... Jc -- PHP General Mailing List (http://www.php.net

[PHP] How to implement this by php Session

2003-01-22 Thread Henry
I'd like to implement ONE USER SIGNIN at the same time, the way I consider about is below: 1 record the sessionId and userId in some media(db), then we'll know who is login and who is not 2 use a demon program to determine whole sessionId which is live and correspond to db's data if some

Re: [PHP] A simple question please.

2003-01-22 Thread Henry
it doesn't matter beforebody or after body as I know - Original Message - From: Denis L. Menezes [EMAIL PROTECTED] To: PHP general list [EMAIL PROTECTED] Sent: Wednesday, January 22, 2003 11:21 PM Subject: [PHP] A simple question please. Hello friends. I need to add a part of html (the

Re: [PHP] How to implement this by php Session

2003-01-22 Thread Henry
solution? - Original Message - From: Jason Wong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 23, 2003 12:32 AM Subject: Re: [PHP] How to implement this by php Session On Thursday 23 January 2003 00:26, Chris Shiflett wrote: --- Henry [EMAIL PROTECTED] wrote: I'd

RE: [PHP] How to implement this by php Session

2003-01-22 Thread Henry
-Original Message- From: Chris Shiflett [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 2:54 AM To: Henry; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [PHP] How to implement this by php Session --- Henry [EMAIL PROTECTED] wrote: what I want to do is make sure one

Re: [PHP] Adding a variable to oracle that contains quotation marks??

2003-01-21 Thread Henry
Once you use double quota mark the character BackSlash doesn't need anymore that's my experience ^_^ - Original Message - From: Rick Emery [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, January 21, 2003 8:56 PM Subject: Re: [PHP] Adding a variable to oracle that

RE: [PHP] is this better or is it still in html?

2003-01-20 Thread Henry
i don't get your point -Original Message- From: Karl James [mailto:[EMAIL PROTECTED]] Sent: Monday, January 20, 2003 11:59 AM To: php Subject: [PHP] is this better or is it still in html? Karl -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] Help with Error, I am Trying!!

2003-01-20 Thread Henry
you miss a { at first if statement -Original Message- From: Karl James [mailto:[EMAIL PROTECTED]] Sent: Monday, January 20, 2003 12:28 PM To: php Subject: [PHP] Help with Error, I am Trying!! Parse error: parse error, unexpected '}' in

[PHP] XTemplate

2002-12-01 Thread Henry
Hi All, I'm looking for a way to seperate my HTML from my PHP and database access code, I pointed in the direction of XTemplate. After having had a look at XTemplate I'm not sure if it is current and stable under PHP 4 Is it and if it isn't is there something better to use? Henry -- PHP

[PHP] Parsing HTML

2002-10-28 Thread Henry
javascripts I'll end up with broken html. Is there a way to only do the search and replace outside the tags and comments. It is further complicated by the fact that I would still like to do the replacements within strings for example within meta tags! Any ideas. Henry -- PHP General Mailing List

Re: [PHP] Findng a pattern

2002-10-28 Thread Henry
googles API's. Henry Rasmus Lerdorf [EMAIL PROTECTED] wrote in message news:Pine.LNX.4.44.0210042315100.28746-10;www.lerdorf.com... You are building something that will automatically scrape Google by explicitly circumventing the tools they have provided for you to do so. Whether

[PHP] Re: Parsing HTML

2002-10-28 Thread Henry
What; nobody has anything to say about parsing HTML and doing search and replaces!! Is there another news group that might be better suited? I do want to do it PHP if I hadn't made that clear. Somebody, anybody, please help. Henry [EMAIL PROTECTED] wrote in message news:20021028103849.2175.qmail

Re: [PHP] Re: Parsing HTML

2002-10-28 Thread Henry
Thanks Jay, I am still a newbie and I will read the manual, thankyou for the help. Having an OK day in the UK . Henry Jay Blanchard [EMAIL PROTECTED] wrote in message news:003f01c27e93$87bc1da0$8102a8c0;000347D72515... [snip] What; nobody has anything to say about parsing HTML

Re: [PHP] Re: Parsing HTML

2002-10-28 Thread Henry
difference and do appreciate your help. Thankyou. Henry Jay Blanchard [EMAIL PROTECTED] wrote in message news:004001c27e95$1c4d2580$8102a8c0;000347D72515... [snip] Thanks Jay, I am still a newbie and I will read the manual, thankyou for the help. Having an OK day in the UK . [/snip

Re: [PHP] Re: Parsing HTML

2002-10-28 Thread Henry
terms and conditions and after the replys from Rasmus I went away and looked into the mater. I agree whole heartedly with what Rasmus and others said and will not be circumventing APIs under any circumstance. Henry John Nichel [EMAIL PROTECTED] wrote in message news:3DBD546D.3000500;by-tor.com

[PHP] Re: mail headers filtering

2002-10-04 Thread Henry
I like that ;-) Manuel Lemos [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hello, On 09/30/2002 01:29 PM, Henry wrote: How about somebody making a javascript email encoder so that if you use a javascript enabled mail client it will get decoded o

[PHP] Findng a pattern

2002-10-04 Thread Henry
would like to know what the values are. Is there a simple way to do this? TIA Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Findng a pattern

2002-10-04 Thread Henry
Thanks, but I don't want to uses google's SOAP interface, is there a preg type solution. Rasmus Lerdorf [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Google has a SOAP interface for this. On Sat, 5 Oct 2002, Henry wrote: Dear All, Excuse my i

Re: [PHP] Findng a pattern

2002-10-04 Thread Henry
are numeric values Henry Timothy J Hitchens [EMAIL PROTECTED] wrote in message 001001c26c2a$927a9ad0$0500a8c0@BAMBINO">news:001001c26c2a$927a9ad0$0500a8c0@BAMBINO... Are you saying you want to be able to extract the numbers etc? Timothy Hitchens (HiTCHO) [EMAIL PROTECTED] HiTCHO ha

Re: [PHP] Findng a pattern

2002-10-04 Thread Henry
Timothy Hitchens (HITCHO) [EMAIL PROTECTED] HITCHO has Spoken! -Original Message- From: Henry [mailto:[EMAIL PROTECTED]] Sent: Saturday, 5 October 2002 2:44 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Findng a pattern Thanks, but I don't want to uses google's SOAP i

Re: [PHP] Findng a pattern

2002-10-04 Thread Henry
Dear Rasmus et.al. I am not wishing to reformat or display or mirror anything from google. This is for my own internal statistics. I hope that puts your mind at rest. Henry Rasmus Lerdorf [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... You realize

Re: [PHP] Findng a pattern

2002-10-04 Thread Henry
Thanks Timothy J Hitchens [EMAIL PROTECTED] wrote in message 001201c26c2c$5b7091a0$0500a8c0@BAMBINO">news:001201c26c2c$5b7091a0$0500a8c0@BAMBINO... Timothy Hitchens (HITCHO) [EMAIL PROTECTED] HITCHO has Spoken! -Original Message- From: Henry [mailto:[EMAIL PROTECTE

[PHP] submitting a form to multiple places!!!

2002-10-01 Thread Henry
autoresponder handling system into the submission process but continue to use the shopping carts pages for the time being. Any suggestions? Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: submitting a form to multiple places!!!

2002-10-01 Thread Henry
No takers? Is this such a difficult problem? Please help. Henry Henry [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi All, I have a problem that I hope you can help me with. I'm using a third party shopping cart solution which is quite fran

[PHP] checking if a MySQL update worked

2002-09-30 Thread Henry
Hi All, mysql_affected_rows() returns zero if you update without changing the data in a database record. How do you tell the difference betwix it worked but nothing changed as opposed to it didn't work? TIA Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Re: mail headers filtering

2002-09-30 Thread Henry
without javascript enabled email clients to view the message remotely on a decode server if they wish. Henry Grech-Cini PS. If anybody does do this please let me know Debbie Dyer [EMAIL PROTECTED] wrote in message 020f01c26895$619cd880$8c093c3e@homepc">news:020f01c26895$619cd880$8c093c3e@hom

[PHP] Getting a mysql set info

2002-09-25 Thread Henry
in order to generate a collection of checkboxes for setting the field in HTML. Any Help Much Appreciated Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Getting a mysql set info

2002-09-25 Thread Henry
Thanks Debbie, Your a star Henry Debbie_dyer [EMAIL PROTECTED] wrote in message 00dc01c2646f$06223dd0$19153c3e@homepc">news:00dc01c2646f$06223dd0$19153c3e@homepc... You need to use SHOW COLUMNS FROM table LIKE 'yoursetfieldname' You can then retrieve the values from the [Type] colu

[PHP] Re: Automatic Form Generation with PHP

2002-09-25 Thread Henry
Hi Debbie, What are you going to do about customers who don't have PHP? To run the field definition extractor part of the system. Henry Debbie_dyer [EMAIL PROTECTED] wrote in message 00a001c26468$80a50530$19153c3e@homepc">news:00a001c26468$80a50530$19153c3e@homepc... Hi We are

  1   2   >