[PHP] include_once(blah); vs $blah=blah; include($blah);

2002-06-11 Thread Henry
in the second version 2) functions defined in the included file are not accessable in the including file. 3) in both examples the file is included, its just the scope that seem shot Any answers? Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] include_once(blah); vs $blah=blah; include($blah);

2002-06-11 Thread Henry
include_once($blah) just messed up the scoping and global vars! Henry Jonathan Rosenberg [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Out of curiosity, try ?php global $root; $blah=include\blah.php; include_once $blah; ? see if it behaves differen

Re: [PHP] include_once(blah); vs $blah=blah; include($blah);

2002-06-11 Thread Henry
any of the following: 1) $filename=include/reallyimportantstuff.php; include_once($filename); 2) include_once(include./reallyimportantstuff.php); 3) $root=include; include_once($root./reallyimportantstuff.php); ? Henry Jonathan Rosenberg [EMAIL PROTECTED] wrote in message [EMAIL

[PHP] php, xml and flash

2002-06-16 Thread Henry
of php processing the xml formatted variables. how can i structure my php script to get at these variables? the xml would be formatted like : test_type=\jellyfish\ search=\big fish\ / i need the value of variables type and search. the values may also have spaces. cheers Henry -- PHP General

Re: [PHP] is there a way to track downloads

2002-06-23 Thread Henry
i have a opensource redirect script that can easily be adapted to track downloads - just need to replace a absolute url for a file name. check it out at http://user:[EMAIL PROTECTED]/lab cheers Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Testing PHP on a local machine

2002-06-24 Thread Henry
Craig, goto http://www.php.net/downloads.php and get the php exe installer read this doc. http://in.geocities.com/samdarshipali/apache-php-mysql.htm that should get you going. cya Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mac ie and force download

2002-07-02 Thread Henry
a few weeks ago there was discussion on how to force open the dialogue save on mac ie using header() was that issue resolved? is there a solution? comments at http://www.php.net/manual/en/function.header.php discuss only win platforms cheers Henry -- PHP General Mailing List (http

[PHP] Executing a php script periodically using crond

2002-07-02 Thread Henry
Hi All I need to execute a php script every hour. I am expecting to do this using a cron job. The question is what command line do I use to execute a php script. Bearing in mind that my configuration is as shown below Thanks in advance Henry My Configuration is as follows: PHP Version

[PHP] Re: Executing a php script periodically using crond

2002-07-02 Thread Henry
PS. I cannot compile as a binary etc. This configuration is the confi of the shared server I am using which is hosted by a third part. Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Executing a php script periodically using crond

2002-07-02 Thread Henry
the referrer to ensure that it is not being invoked via a browser!! I'm going to go down the wget path at the moment. Thanks in advance. Henry Erik Price [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... On Tuesday, July 2, 2002, at 12:25 PM, Henry wrote: PS.

Re: [PHP] Re: Executing a php script periodically using crond

2002-07-02 Thread Henry
that, its working a treat with wget and php. I'll have a fully fledged autoresponder system up in no time. Thankyou all. Henry Erik Price [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... On Tuesday, July 2, 2002, at 01:00 PM, Henry wrote: Only one

[PHP] find and replace in php

2002-07-02 Thread Henry
, $expectation Whilst ensuring that if the variable doesn't exist then it will be replaced with (absolutely nothing). Thankyou in advance Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Copy of Ed Lazor's response : find and replace in php

2002-07-02 Thread Henry
)) $MailBody .= Dear Customer; else $MailBody .= Dear $firstname; Note the use of .= to append to the string. -Original Message- From: Henry [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002 10:53 AM To: [EMAIL PROTECTED] Subject: [PHP] find and replace in php Imagine I have a piece

[PHP] Re: Copy of Ed Lazor's response : find and replace in php

2002-07-02 Thread Henry
Thanks Ed, I would like to do that, but I'm not hard coding the letters myself. I'm trying to provide a way for others (to provide the text, who know nothing about the underlying processes) and do the search and replaces on the fly. Henry Henry [EMAIL PROTECTED] wrote in message [EMAIL

Re: [PHP] find and replace in php

2002-07-02 Thread Henry
Perfect Thankyou Henry Erik Price [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... On Tuesday, July 2, 2002, at 01:52 PM, Henry wrote: Imagine I have a piece of text Dear [firstname] Thankyou for purchasing [product] on [date]. We're sur

[PHP] Does Location: headers constantly

2002-07-02 Thread Henry
be asking this in a different new group? Perhaps http.general? (if it exists) Henry Thanks in advance -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP/MySQL and parameterized queries

2002-07-06 Thread Henry
Does MySQL support parameterized queries (e.g., INSERT INTO table (Col1,Col2) VALUES (?,?)), and if so, is there a PHP function that allows you to create and attach parameters to MySQL queries? Thanks, Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Getting PHP to read the mail!

2002-07-10 Thread Henry
] and if they are I would like to processes the mail body and subject line. I'm sure there are different languages to do all this in; , Perl 5.0 for example but I like PHP ;-) Henry Thanks in advance -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Re: Getting PHP to read the mail!

2002-07-10 Thread Henry
I have --with-imap for my php installation. Does that help? Henry Henry [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Dear all, I'm writting an autoresponder system in PHP. and I'm using wget in my cron jobs to process it. Is there a way that I can

[PHP] Sessions Vars under 4.0.4pl1

2002-07-17 Thread Henry
one all is great and the session id is shown. But when I click on the Next link I get the next page with the same session id shown (all well and good) but no value in $HTTP_SESSION_VARS['count']!!! Where am I going wrong? Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] Regular expression for correcting proper nouns

2002-07-17 Thread Henry
!!! Is there a soultion using regular expressions? Also is there one for removing multiple spaces? i..e given A B C D E it would give A B C D E. I have never used regular expression before and thought that if I had some examples like these, I could go from there. Henry -- PHP General Mailing List (http

[PHP] $HTTP_SESSION_VARS ? Have I got it wrong

2002-07-17 Thread Henry
page followed by another page where I display $count2 and that works fine. Why? Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] pop3 authentication

2002-07-25 Thread Henry
on the domain, is this possible using php?? anyone have demo code for something like this? cheers Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Any Ideas @ becomes _Xy

2002-05-18 Thread Henry
using the email address [EMAIL PROTECTED] They appear to have translated the @ symbol to _Xy. Any guess why? Is there a PHP function that does this translation for me? Is it some sort of standard? Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Re: Newbie - create image error URGENT

2002-05-18 Thread Henry
Do you have GD Installed? Dani [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi everyone! I'm still learning PHP and MYSQL using windows98, MYSQL, PHP 4 in my local hard drive. I want to learn uploading image and resizing image in my local machine. when

[PHP] How do I get rid of session id (test purposes)

2002-05-18 Thread Henry
Hello All Love Sessions! BUT how do I clear it so that when I execute session_start() again I get a new one? Help. I'm sure I should have RTFM more but I'm a newbie. Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] How can I ammend the session_id

2002-05-18 Thread Henry
Dear All, I want to use the session id that session_start would create but I wish to modify it as well! Suggestions? I'm currently trying: $sessionID = uniqid(); session_id($sessionID.u.$u.c.$c.z); session_start(); where $u and $c are passed in the URL Thanks in advance Henry -- PHP

[PHP] How can I access the value in a variable whos name is in a string

2002-05-18 Thread Henry
Dear All, $variablename=variable; eval(\$.$variablename.=13;); echo $variable; This works fine!! It echoes 13; But this doesn't - echo eval(\$variablename\); Why?? Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: How can I access the value in a variable whos name is in a string

2002-05-18 Thread Henry
I found one way I can do the following eval(\$val=\$.$variation.;); echo $val; Is there a better way? Henry Henry [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Dear All, $variablename=variable; eval(\$.$variablename.=13;); echo $variable; Th

[PHP] Non cachable php for use as an img src

2002-05-19 Thread Henry
?site=1 Any help as to where I should start looking would be greatly appreciated. Henry. TIA. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mail ( ) and $to

2002-06-02 Thread Henry
though. what's happening here? cheers Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Probs with MIME multipart/alternative generated with PEAR mime.php

2002-06-03 Thread Henry
Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 7bit cheers Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Probs with MIME multipart/alternative generated with PEAR mime.php

2002-06-03 Thread Henry
pesky CRLF's! fairly happy with it now. only seems to crash on odd/less used email clients. let me know how you go. and if anyone else wants to test it - go ahead - more the better - please give bug reports if possible! cheers Henry Thanks for the reply. I tryed tweaking the pearMime.php class

Re: [PHP] email attachments and PHP

2002-06-04 Thread Henry
effort to the Probs with MIME multipart/alternative generated with PEAR mime.php thread a little while back. cheers Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] running php with .html files?

2002-07-28 Thread Henry
the directory wher the file is held or specifically for the server. (Unfortunately I don't have access to the conf files for the server because I'm currently using a shared serever from an ISP). Any help is greatly appreciated. Even pointers in the right direction would be useful. TIA Henry -- PHP

Re: [PHP] running php with .html files?

2002-07-28 Thread Henry
That did the trick. Thanks. Henry Michael Sims [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... On Sun, 28 Jul 2002 08:18:40 +0100, you wrote: Hi All, [...] I have a php script that I wish to execute but I want to put it in index.html (not index.php)

Re: [PHP] Most portable back button in php

2002-08-09 Thread Henry
Thanks Justin I'll have a go ;-) Henry Justin French [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I have this code on one of my sites... it sits inthe config file, so every page is able to establish their URL. For my site, the definition of URL

[PHP] Re: anyone can help?

2002-08-09 Thread Henry
. Henry ::: Flavio Bastos Amiel:: [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... this is not functional and i dont know why, this is stoping where if (!$accion) is, and the wuery if you run in into the sql is perfectREQUIRE('conexion.php'); $accion=mys

[PHP] including URL's

2002-08-09 Thread Henry
is it possible if the script is on a different machine)? Is there some way to achieve this effect. I'm trying to keep things as modular as possible even to the extent that some modules live on different servers. TIA Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Can I assign to $_POST legitimately

2002-08-09 Thread Henry
I can do it but is it legit? $_POST['name']='henry'; within a php script? if $_POST['name'] is not set. The clearly $_POST['name'] was not posted!! Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Is there a standard function to remove multiple spaces from a string?

2002-08-09 Thread Henry
times,2) - Hello peeps, happy times (notice single space between , and h) Can I do it with reg exp? TIA Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Thumb nail of a web page

2002-08-09 Thread Henry
Hi All, Just out of interest, does anyone know of a way to generate a thumb nail of a web page given a URL? Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Getting PHP to submit a form to google

2002-08-15 Thread Henry
then parse the results so that I can feed them back to the user in a form that I choose. How should/can I go about this? TIA. Henry. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Exiting from an include or required file

2002-08-21 Thread Henry
#include A; form method=post input name=search_criteria type=text /form TIA Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Exiting from an include or required file

2002-08-21 Thread Henry
Thanks, but my situation is slight more convoluted than I describe. I want to cascade down through a include chain and want to just stop processing the current include and return to the one which called it. Similar to exit() but only for the local scope. TIA Henry Mark Roedel [EMAIL PROTECTED

Re: [PHP] Exiting from an include or required file

2002-08-21 Thread Henry
-processor directive include is not a pre-processor directive include is not a pre-processor directive include is not a pre-processor directive include is not a pre-processor directive include is not a pre-processor directive Thankyou once again Henry M A Bond [EMAIL PROTECTED] wrote

[PHP] CURL without --with-curl

2002-08-29 Thread Henry
How can I use CURL if I cannot recompile PHP with --with-curl. I am using PHP4.2.2 on a shared server with an ISP so I do not get the ability to recompile. Hope someone can make a suggestion. I want to be able to do GET and POST requests of pages easily to Google. TIA Henry -- PHP

[PHP] Using cURL

2002-08-29 Thread Henry
need to do so I can start using it? Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: GD Graphics Library

2002-08-30 Thread Henry
Does it have to be in the US? Henry René fournier [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... There are several functions in the GD library that I really, really want to be able to use on several sites that I develop/manage. Unfortunately, the I

[PHP] changing the include path

2002-08-30 Thread Henry
Hello All, Is it possible to change the include path when a script is runing without having to change the php.ini file? TIA Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: mysql string comparison not working

2002-09-03 Thread Henry
Have you tried single quotes ' '? David Banning [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... if I set test = Y; then if ($test == Y) {echo (it matches);} seems to work while if ($row[24] == Y) {echo (it matches);} does not. The row[24] mysql variable

[PHP] Generating CSV files on the fly and getting the browser to download

2002-09-10 Thread Henry
Hi All, I suspect this is a commonly asked question but; how do I generate a CSV files on the fly and get the browser to download it. Do I actually need to generate a file or can I just generate a variable contain the data that would be in the file? Any help is greatly appreciated. TIA Henry

[PHP] Re: Generating CSV files on the fly and getting the browser to download

2002-09-10 Thread Henry
It didn'ti work ;-( Just showed a page with the data in! How would I do it with a file in any case? Henry Lallous [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Try this: ?php $fileextension=csv; $filename=report; $fnsave = $filename.$filee

[PHP] Re: How to schedule a run for a php script.

2002-09-17 Thread Henry
Sorry this is late, If you do not have PHP compiled for command line use then use crontabs and wget. There are security issues, but some checks like the browser and IP address can be used to protect yourself a bit. HTH Henry Yc Nyon [EMAIL PROTECTED] wrote in message news:003201c25b3a

[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

Re: [PHP] Re: Automatic Form Generation with PHP

2002-09-25 Thread Henry
Hi Debbie, That's fair enough. How are you ensure that only valid servers request information from the field enquiry part? Otherwise people might be able to use this part to gain access to the database structure if not the actual data. Henry. Debbie_dyer [EMAIL PROTECTED] wrote in message

[PHP] Re: Newsletter Script

2002-09-25 Thread Henry
Shouldn't you have some selection criteria after $MailQuery = SELECT * FROM newsletter_db; such as WHERE `newsletterID`=$_REQUEST['id']; ?? Other than that if its not dying and you actuall do have more than one recipient I cannot see it. Henry Sascha Braun [EMAIL PROTECTED] wrote

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

2002-09-25 Thread Henry
use \ instead of so that you don't actually end the string Henry Mario Ohnewald [EMAIL PROTECTED] wrote in message 001801c2647a$070aa100$350aa8c0@W2KDP">news:001801c2647a$070aa100$350aa8c0@W2KDP... Hello! I want to write a line into a file (called $script) wich g

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

2002-09-25 Thread Henry
Oops, I didn't read on Sorry Henry Henry [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... use \ instead of so that you don't actually end the string Henry Mario Ohnewald [EMAIL PROTECTED] wrote in message 001801c2647a$070aa100$350aa8c0@W2K

[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 actually end the string Henry Mario Ohnewald [EMAIL PROTECTE

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

2002-09-25 Thread Henry
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' I have tried serveral of version, maybe you could give me your example from the lines below. I couldnt wor

[PHP] e*reminder and cron

2001-05-20 Thread Henry
in the simplest way. cheers Henry http://www.bigjolt.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

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

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

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

2003-01-24 Thread Henry

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] 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] 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] 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] 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] 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] Help about Linux password change script

2002-03-05 Thread Henry Zambrano
Hi, I'm trying to do a script for changing the Linux password of an user in a web page. I don't know how to implement the command passwd in a php script or to do a shell script which would be invoked by the php script. I hope someone can help me. Thanks. Henry Zambrano

[PHP] Success Using PEAR?

2002-03-16 Thread Bryan Henry
anyone had success using PEAR? I have read the documentation and been trying to use the PEAR files that came with PHP 4.1.2 , PEAR cvs and PHP4/PEAR cvs with no success. I wish there was some updated documentation, and more explanation on which files to use for stable development. Every

[PHP] OOP Question in PHP

2002-06-05 Thread Henry Blackman
Document(number); and have the constructor retrieve the appropriate data from MySQL and fill the attribute variables. Or do I do something like: $document = new Document; $document -retrieve(number); Which is the best and most valid way of doing things. Cheers, Henry -- PHP General Mailing

Re: [PHP] Execute a PHP script from unix (crontab)

2001-08-15 Thread Tom Henry
=userid:passwd httpd://mydomain.com/protected_dir//myphpscript.php /dev/null Hope that helps, Tom Henry Reductor wrote: do you mean perl?!? - Original Message - From: Augusto Cesar Castoldi [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 16, 2001 1:04 AM Subject

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

  1   2   >