Re: [PHP] learning resources for PHP

2012-04-18 Thread Henry Martinez
t Doyle. Covers basics nicely, and I've found 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.

[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
=> (first page loads 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

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] 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 ? Looks like strip_tags() will do the trick for you: http://us3.php.net/manual/en/function.strip-tags.php -- Joe

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

2006-05-10 Thread Joe Henry
> > Also tried exec. I really want to take advantage of the > temporary named pipes so I don't have to worry about the temporary files > generated. I've been googling around without much help. Could anyone > plz give me some hint? Thanks a lo

Re: [PHP] WINNER

2006-05-08 Thread Joe Henry
mong all PHP-general subscribers. 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.co

Re: [PHP] Using linkDisplayFields of FormBuilder

2006-04-26 Thread Joe Henry
ts.php HTH -- 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
ed in > preg_match() in PHP? http://us3.php.net/manual/en/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:

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

2006-04-18 Thread Joe Henry
e, the Web 2.0 Movement was born. Web 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
t of JobID's and see > which ones need to be updated. > If I'm understanding what you're asking, you have an array of checkboxes whose values you want passed to you PHP via the $_POST array. The HTML form syntax would be something like: etc. Then in your PHP script, $_

Re: [PHP] interview

2006-04-13 Thread Joe Henry
On Thursday 13 April 2006 11:13 am, Robert Cummings wrote: > On Thu, 2006-04-13 at 12:56, Wolf wrote: > > How much wood would a wood chuck chuck if a wood chuck could chuck wood?? > > Canadian, American, or "Other" woodchuck? > Leave or we shall taunt you a

Re: [PHP] Argument passed by reference?

2006-04-10 Thread Joe Henry
Chris: > > Please forgive my ignorance, but when did that happen? > > tedd > -- > --- >- http://sperling.com I'm 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
field in the DB isn't numeric this would be > '{$_POST['model']}' > > Dan > > ------- > http://chrome.me.uk > > > -Original Message- > From: Joe Henry [mailto:[EMAIL PROTECTED] > Sent: 07 April 2006 20:53 > To: php-gener

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 -- J

Re: [PHP] Argument passed by reference?

2006-04-06 Thread Joe Henry
e function call. 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.

Re: [PHP] simple regex query

2006-04-06 Thread Joe Henry
anyone give me some insight as to where I'm going wrong? > > thanks > > -- > > Angelo I found an AJAX regex tester the other day. It'll check PCRE, Posix, 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] Download image in PHP

2006-04-05 Thread Joe Henry
- 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 www.celebrityaccess.com [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

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] Can "output_buffering" be set in a script?

2006-03-30 Thread Joe Henry
ed. -- 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
; > throw new Exception("non existing property!"); > } > } > > $f = new Foo; > echo $f->foo,"\n"; > $f->foo = "bar"; > echo $f->foo,"\n"; Maybe I'm wrong, but I thought you couldn't use the "

Re: [PHP] where php at?

2006-03-27 Thread Joe Henry
your local machine? If you do, then that would be where you'd run the command "which php". On Linux/Mac OS X, you can ssh via a terminal. On Windows, a program like PuTTY will do the trick. Link for PuTTY download (just in case): http://www.chiark.greenend.org.uk/~sgtatham/p

Re: [PHP] IE quirk

2006-03-17 Thread Joe Henry
ill remain > open until the page has finished loading or it is explicitly terminated. > > You can lose the session however if the the page contains a reference to > with name and id references (which may be used if the image > is referencing a dynamic image, called by javascr

Re: [PHP] What am I missing?

2006-03-07 Thread Joe Henry
ve 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 th

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'] c

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 va

[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

[PHP] Re: Can't execute external program

2005-11-23 Thread Henry Castillo
I added 2>&1 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-23 Thread Henry Castillo
is the php I've created, fairly simple: 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: > > That was on of the first things I checked: &

[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: > I'm g

[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

[PHP] Checking if a website is up?

2004-03-30 Thread Henry Grech-Cini
y 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

[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

[PHP] Loosing $_SESSION vars somewhere...

2004-03-11 Thread Mark Henry
ON values on each page. If a value 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 Enterpris

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

2004-03-11 Thread Henry Grech-Cini
e by 1,2&3 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 th

[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). http://www.index.php";); }

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

2004-03-10 Thread Henry Grech-Cini
this: "; break; case 2: echo 'enter you telephone number:"; break; default: echo "oops, no form ID"; break; } ?> you could imagine calling this as follow: http://www.yoursite.com/form.php?formid=1 or http://www.yoursite.com/f

[PHP] How to make sure a redirect works

2004-03-10 Thread Henry Grech-Cini
="<?php echo $url[$index]; ?>"; window.location="<?php echo $url[$index]; ?>"; // for NS <= 2.x no support for replace // --> Forward Page Your browser appears not to support any form of automatic redirect. Pleaseclick here to be redirected to the w

[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] 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

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

2004-02-26 Thread Bryan Henry
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 as if the image files do not exist, even though the directory contents can be views via FTP... What did I do? Bryan On T

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

2004-02-26 Thread Bryan Henry
Here is the script I used to rename images. foreach ($config as $line) { if ( $line == "" ) next($config); elseif ( $line == "\n" ) next($config); elseif ( strstr($line,"#")) next($config); else { $value = split(Chr(9),$line); $imgs[$value[0]] = $value[1];

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
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

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 meddelan

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

2004-02-24 Thread Henry Grech-Cini
I came accross this link 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 Do we all agree or should I keep trying? Henry -- PHP General Mailing List (http://www.php.

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 so I could do something like /]*)>(.* whilst not <\/fieldset>)<\/fieldset>/i Or alternatively is there a switch to say get the smallest sequence Thanks Henry &quo

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

2004-02-24 Thread Henry Grech-Cini
dbye] 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 "Sven" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Henry G

[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 mess

[PHP] regexp appears to be faulty!?

2004-02-24 Thread Henry Grech-Cini
Hi All, function extractFieldsets($subject) { $regexp="/]*)>[^(<\/fieldset>)]*/i"; $replacement; $matches=array(); preg_match_all($regexp, $subject, $matches); return ($matches); } $result=extractFieldsets('testcontent of helloblahgoodbye'); echo ""; foreach($result as $key=>$str

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-general&m=104913671122253&w=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 to

[PHP] circumventing SAFE MODE Restriction

2003-04-03 Thread Henry Grech-Cini
ke this. Untitled Document handle."\n"; echo "Path: ".$d->path."\n"; while (false !== ($entry = $d->read())) { echo $entry."\n"; } $d->close(); ?> Any ideas about how to get round this other than making a .php file to call in the

[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 appreciat

[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 "",HtmlSpecialChars($headers[$line]),""; } But all I get is [Array ( [0] => From: [1] => ) ] From: Hen

[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 ti

[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 >" (p

[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 a

[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 appreciat

Re: [PHP] Session variable under PHP 4.0.6

2003-03-03 Thread Henry Grech-Cini
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"; > > wi

[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,

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

2003-03-03 Thread Henry Grech-Cini
Thing 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] Session variable under PHP 4.0.6

2003-03-03 Thread Henry Grech-Cini
alue ) -->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 -- Sorry about the fo

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 redire

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

2003-01-24 Thread Henry

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

2003-01-22 Thread Henry
thanks a lot -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 wan

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: > > ---

Re: [PHP] A simple question please.

2003-01-22 Thread Henry
it doesn't matter before or after 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

[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 se

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.n

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] 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 orac

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 /home/virtual/site12/fst/var/www/html/Crea

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: http:/

[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? He

Re: [PHP] Re: Parsing HTML

2002-10-28 Thread Henry
nt googles 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:3D

Re: [PHP] Re: Parsing HTML

2002-10-28 Thread Henry
d the time 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 > h

Re: [PHP] Re: Parsing HTML

2002-10-28 Thread Henry
generating the regular expression to use that will ignore the contents of tags save for the contents of quotes within meta tags and do the replace for an associative array of mappings. Hope your day is getting better in Texas. Henry "Jay Blanchard" <[EMAIL PROTECTED]> wrote in message n

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

[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 new

Re: [PHP] Findng a pattern

2002-10-28 Thread Henry
mvent 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

[PHP] Parsing HTML

2002-10-28 Thread Henry
of inline 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

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! > > > &g

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 PROTECTE

Re: [PHP] Findng a pattern

2002-10-04 Thread Henry
in the same order each time? > > > 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] &

Re: [PHP] Findng a pattern

2002-10-04 Thread Henry
7;s 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

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,

[PHP] Findng a pattern

2002-10-04 Thread Henry
re I 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

[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 > > javas

[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 s

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

2002-10-01 Thread Henry
erent 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: 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$

[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.ne

Re: [PHP] Re: exec("echo ... issuse

2002-09-25 Thread Henry
0aa8c0@W2KDP">news:001901c26480$5e280df0$350aa8c0@W2KDP... > Hi Henry, > > > > From: Henry [mailto:[EMAIL PROTECTED]] > > > > > > Have you tried using single quotes arround the main string? > > > > i.e. 'echo "echo blah blah"&

[PHP] Re: exec("echo ... issuse

2002-09-25 Thread Henry
Have you tried using single quotes arround the main string? i.e. 'echo "echo blah blah"' Henry "Henry" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > use \" instead of " so that you don't

  1   2   >