Re: [PHP] PHP Website

2002-11-15 Thread Jason Reid
Nope, though if you are you could always just try using one of the mirrors. Jason Reid [EMAIL PROTECTED] -- AC Host Canada www.achost.ca - Original Message - From: "Van Andel, Robert" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, November 15, 2002 4:56 PM Subject: [PHP] PHP We

RE: [PHP] newbie's question

2002-11-15 Thread Van Andel, Robert
Don't know about a correct way but you can use if(empty($variable)) Robbert van Andel -Original Message- From: Frank Wang [mailto:wang960@;yahoo.com] Sent: Friday, November 15, 2002 7:10 AM To: [EMAIL PROTECTED] Subject: [PHP] newbie's question Hi, what is the correct way of testing i

[PHP] mail and from line overriding

2002-11-15 Thread Frank Wang
Hi, I have something like following: $from = "[EMAIL PROTECTED]"; $email = "[EMAIL PROTECTED]"; $msg = "abcde"; mail($email, $subj, $msg, $from); the message sent always has the 'from' line taken from php.ini, not $from, is there a way to override this ? Thanks. Frank -- PHP General Maili

[PHP] Strings and php.ini

2002-11-15 Thread Khalid El-Kary
hi, are there any php.ini directives that control the PHP string functions? sorry i'm not percise but infact i have a 1200 lines script that acts well on a windows machine with PHP 4.2.3 Apache 1.3.24, but on a linux machine with PHP 4.2.1 (keep it secret :)) and Apache 1.3.20 it acts bad but th

Re: [PHP] Finding last entry in MySQL database

2002-11-15 Thread Justin French
on 15/11/02 8:11 PM, Tim Thorburn ([EMAIL PROTECTED]) wrote: > I'm creating a form which will allow individuals to add themselves to an > online database and ask if they'd like to upload a picture. I have the > form setup which allows the individuals to add themselves - currently it > asks if the

Re: [PHP] PHP extensions

2002-11-15 Thread Justin French
That's probably the one -- have a look on phpclasses.org -- handles attachments, multi-part stuff (HTML email), etc etc. Justin on 16/11/02 5:19 AM, Mako Shark ([EMAIL PROTECTED]) wrote: >> Email extension? Aren't you talking about Manuel >> Lemos' mimemail class? >> It's just an include file

RE: [PHP] newbie's question

2002-11-15 Thread Steve Keller
At 11/15/2002 06:09 PM, you wrote: Don't know about a correct way but you can use if(empty($variable)) I may be crazy, but wouldn't if ($variable) work just as well? If the string is empty it'll return a negatory on that check. Lemme double check that. $testVar = ""; if ($testVar) { echo "

RE: [PHP] newbie's question

2002-11-15 Thread Steve Keller
Err... sorry. The logic was there but my fingers got a bit ahead of my brain. The check works, but if you want to just check if it's empty turn the conditional to a negative, like so: if (!$testVar) { etc. } That makes it "If NOT $testVar" > I may be crazy, but wouldn't if ($variable) work

RE: [PHP] newbie's question

2002-11-15 Thread Van Andel, Robert
Yes it would. I like to make things complicated :) Robbert van Andel -Original Message- From: Steve Keller [mailto:skeller@;healthtvchannel.org] Sent: Friday, November 15, 2002 5:11 PM To: [EMAIL PROTECTED] Subject: RE: [PHP] newbie's question Err... sorry. The logic was there but my

[PHP] Performance

2002-11-15 Thread Pupeno
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I'm very intresting in achiving high performances with my scripts. I have a couple of questions about performance. When passing arrays (they are not very huge anyway) to a function, passing them as reference is faster, isn't it ? And when I have a cha

[PHP] session handling

2002-11-15 Thread Anjali Kaur
i want to access some variables generated in one page in all the other pages, so i thought of using $_SESSION. what i did is : in page1.php i do: $temp = 'someValue'; session_start(); $_SESSION['abc'] = $temp; in page2.php : session_start(); echo($_SESSION['abc']); but i am not ab

Re: [PHP] Performance

2002-11-15 Thread Rasmus Lerdorf
> I'm very intresting in achiving high performances with my scripts. > I have a couple of questions about performance. > When passing arrays (they are not very huge anyway) to a function, passing > them as reference is faster, isn't it ? No > And when I have a chain of ifs, is ti better (from the

[PHP] running php as cgi script

2002-11-15 Thread Scott
I'm trying to run a simple test php script as a cgi script on my ISP's server and haven't been able to get it to work, although according them it is possible. I have an example from a book which gives the following steps: 1. Put the script in the cgi-bin 2. run chmod 755 3. include "#!/usr/bin

RE: [PHP] mail and from line overriding

2002-11-15 Thread Jonathan Rosenberg \(Tabby's Place\)
You need to change the first statement to $from = "From: [EMAIL PROTECTED]"; -- JR > -Original Message- > From: Frank Wang [mailto:[EMAIL PROTECTED]] > Sent: Friday, November 15, 2002 10:15 AM > To: [EMAIL PROTECTED] > Subject: [PHP] mail and from line overriding > > > Hi, > > I

Re: [PHP] running php as cgi script

2002-11-15 Thread Scott
Forgot to include the error I'm getting is: CGIwrap Error: System Error: execv() failed Error: No such file or directory (2) Although the file and path are correct. On Friday 15 November 2002 10:52 pm, you wrote: > I'm trying to run a simple test php script as a cgi script on my ISP's > server

Re: [PHP] session handling

2002-11-15 Thread Justin French
Have you got cookies enabled in your browser? Check if PHP is setting the cookie in your browser -- it should be named PHPSESSID by default, but might be named something else... If you haven't got cookies enabled on your browser, then you have to pass the session id around in the URL, linking page

Re: [PHP] running php as cgi script

2002-11-15 Thread Marco Tabini
The script looks ok to me... The difference that you probably see is the first line. This is the "shebang", a line that tells the script interpreter which application the script should be interpreted with. This, together with the permissions you've provided, makes the script "self-executing", in t

Re: [PHP] running php as cgi script

2002-11-15 Thread bahwi
That is in no way a correct php program. What error are you getting on the page? Or are you seeing the source? If you are seeing the source when you try to view the script it is a problem on their end(they may want them named as .cgi instead of .php, although rare now, this might be how they ar

Re: [PHP] running php as cgi script

2002-11-15 Thread @ Edwin
Hello, "Scott" <[EMAIL PROTECTED]> wrote: > > Forgot to include the error I'm getting is: > > CGIwrap Error: System Error: execv() failed > > Error: No such file or directory (2) > > Although the file and path are correct. > Are you sure it's correct? Most cgi-bin folders are located outside you

Re: [PHP] running php as cgi script

2002-11-15 Thread Marco Tabini
Joseph, I think he's trying to run the script from the shell--in which case it looks okay to me (besides perhaps a terminating semicolon on the last line) Marco -- php|architect - The magazine for PHP Professionals The first monthly worldwide magazine dedicated to PHP programmers Che

Re: [PHP] running php as cgi script

2002-11-15 Thread @ Edwin
"Scott" <[EMAIL PROTECTED]> wrote: > I'm trying to run a simple test php script as a cgi script on my ISP's server > and haven't been able to get it to work, although according them it is > possible. > > I have an example from a book which gives the following steps: > > 1. Put the script in the

Re: [PHP] running php as cgi script

2002-11-15 Thread @ Edwin
... and yes, you forgot the semi-colon :) Also, are you trying to do something like these? http://www.phpbeginner.com/columns/ray/cli - E -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] running php as cgi script

2002-11-15 Thread Marco Tabini
If you look at the error he's getting, I think there's something a bit more critical than the PHP tags... although you're right and I missed that :-( d'oh! Marco On Fri, 2002-11-15 at 23:20, @ Edwin wrote: > > "Scott" <[EMAIL PROTECTED]> wrote: > > > I'm trying to run a simple test php script a

Re: [PHP] Strings and php.ini

2002-11-15 Thread @ Edwin
Hello, "Khalid El-Kary" <[EMAIL PROTECTED]>wrote: > hi, > > are there any php.ini directives that control the PHP string functions? You mean something like this? (Under "; Safe Mode") -> ; This directive allows you to disable certain functions for security re

Re: [PHP] running php as cgi script

2002-11-15 Thread bahwi
Oh, sorry, I'm running the 4.2.3 standalone version(from FreeBSD Ports system) and I have to use the tags still. It looks like a CGIwrap problem, but I'm not familiar with that. =/ --Joseph http://www.josephguhlin.com/ Marco Tabini wrote: Joseph, I think he's trying to run the script from the s

Re: [PHP] running php as cgi script

2002-11-15 Thread Marco Tabini
No, that was actually my mistake, and you were right. I guess I've either had too much to drink, or too little. I'll try and post again in a couple of hours and let's see which of the two is the case :-) Marco On Fri, 2002-11-15 at 23:26, bahwi wrote: > Oh, sorry, I'm running the 4.2.3 standalon

Re: [PHP] running php as cgi script

2002-11-15 Thread @ Edwin
Hello Marco, "Marco Tabini" <[EMAIL PROTECTED]> wrote: > If you look at the error he's getting, I think there's something a bit > more critical than the PHP tags... You're right. Most probably there's something more... > although you're right and I missed > that :-

Re: [PHP] running php as cgi script

2002-11-15 Thread bahwi
Haha, well I posted my version number because I haven't tested the new one that actually comes default with a CLI. So I don't know if the end tags are necessary or not. Marco Tabini wrote: No, that was actually my mistake, and you were right. I guess I've either had too much to drink, or too li

Re: [PHP] running php as cgi script

2002-11-15 Thread Scott
I'm not intending to run the script from the shell. What I am trying to do is encrypt emails with Gnupg. The problem is Gnupg runs as my user name and php runs as nobody. So I'm trying to run a php script as cgi to deliver the data to Gnupg since a cgi script will run as my username. I am usi

Re: [PHP] newbie's question

2002-11-15 Thread Frank Wang
Hi, That looks good to me, thanks. "Steve Keller" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Err... sorry. The logic was there but my fingers got a bit ahead of my > brain. The check works, but if you want to just check if it's empty turn > the conditional

php-general Digest 16 Nov 2002 05:53:22 -0000 Issue 1707

2002-11-15 Thread php-general-digest-help
php-general Digest 16 Nov 2002 05:53:22 - Issue 1707 Topics (messages 124636 through 124701): Re: Escaping characters won't work 124636 by: . Edwin Re: GD 1.5 124637 by: Jason Wong 124638 by: . Edwin 124640 by: Mako Shark 124642 by: . Edwin 12

Re: [PHP] Javascript + PHP

2002-11-15 Thread Jason Wong
On Saturday 16 November 2002 07:07, SED wrote: > I need to finish a project using PHP and JavaScript but the references > for JavaScript I'm using is rather old. I'm looking for a JavaScript > postlist similar to this but without any luck. I have tried Google but > it finds every site containing Ja

[PHP] Forms and Sessions not working

2002-11-15 Thread Chris Jackson
Hi all: Im new to php and i have an isue. php4.2.3 windows 2000 advanced server I create a simple form page that posts back to its self and im unable to retreive the posted form data to display on the page. it seems like all my GLOBAL amd SESSION stuff isnt working. sample code: Your Name

[PHP] POSIX and PCRE help

2002-11-15 Thread OrangeHairedBoy
I am trying to learn more about regular expressions as I haven't used them much in the past. I am working with email, and I'm looking for a way to split the following expression up: Content-Type: text/plain; boundary="whatever"; Using "/^(\S+)\:\s*(.+)$/iU" I can split it into: [Content-Type

Re: [PHP] what else do i need in this upload script?

2002-11-15 Thread Jason Wong
On Saturday 16 November 2002 06:54, tweak2x wrote: > it dosnt work for me http://marc.theaimsgroup.com/?l=php-general&m=103678340124082&w=2 -- Jason Wong -> Gremlins Associates -> www.gremlins.biz Open Source Software Systems Integrators * Web Design & Hosting * Internet & Intranet Applicatio

[PHP] Re: session handling

2002-11-15 Thread OrangeHairedBoy
Here's what you need: on page 1.php: on page 2.php: You have to register the variable with the session first so it knows that it's a variable that needs monitored and, when the script finishes, needs saved. Hope this helps! Lewis "Anjali Kaur" <[EMAIL PROTECTED]> wrote in message [EMAIL P

Re: [PHP] Forms and Sessions not working

2002-11-15 Thread Jason Wong
On Saturday 16 November 2002 15:11, Chris Jackson wrote: > Hi all: > Im new to php and i have an isue. > > php4.2.3 windows 2000 advanced server > > > I create a simple form page that posts back to its self and im unable to > retreive the posted form data to display on the page. > > it seems like a

Re: [PHP] I'm in need of a PHP web host recommendation

2002-11-15 Thread OrangeHairedBoy
Seems a bit expensive though...$7.95/month for 5megs and 1 email. You could try your-site.com which is $5.00/month for 50megs and 25 email, etc... Or, look at CIHOST.com - the folks I use. Their cheapest unix deal is ~ $15/month for 100megs, 25+email, mysql, etc...mega fast connection too... One

Re: [PHP] Reasons for error message: Warning: Failed opening '/www/servers/webGNOM/test.php' for inclusion (include_path='.:/usr/local/lib/php') in Unknown on line 0

2002-11-15 Thread Jason Wong
On Saturday 16 November 2002 03:49, Lee P. Reilly wrote: > Can someone suggest a reason for the following? I am trying to INCLUDE > the JPGraph libraries in my PHP script as follows: [snip] > My INCLUDE_PATH is set to /usr/local/lib/php, so the 5 INCLUDED scripts > are in there. However, this co

[PHP] Re: Relaying variables to distant site

2002-11-15 Thread Mike MacDonald
Hi people ! Just a few words of thanks. This site is now up and going with the help of all of you Your guidance pointed us towards new learning and discovery. In the end we needed to use a number of the suggestions made -- the destination app is somewhat brittle! and the client firewall politi

<    1   2