RE: [PHP] Help on including cgi scripts into php documents.

2002-06-16 Thread John Holmes
Take a look at virtual() www.php.net/virtual ---John Holmes... -Original Message- From: Vegitas Pride [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 16, 2002 2:54 PM To: [EMAIL PROTECTED] Subject: [PHP] Help on including cgi scripts into php documents. I was searching around

Re: [PHP] Help! authorization question...

2002-06-13 Thread Julie Meloni
RB I am new to PHP and trying to learn. I am trying a tutorial and this is the RB script. It is supposed to pop up a box requiring a username and pass. but RB all I get is If you are using the CGI version of PHP, HTTP-based authentication will not work. That is stated in the tutorial. -

RE: [PHP] Help with forms data please

2002-06-12 Thread Jay Blanchard
[snip] I need to send the data from a form without taking the surfer to that page. ie: form on ' formPage.php ' with form name='foo' method='post' action='../newUser.php' but leave the user on ' formPage.php' Any way to do that? [/snip] At the end of newUser.php do a header redirect, i.e.

RE: [PHP] Help with forms data please

2002-06-12 Thread Jonathan Rosenberg
How about if you just return the user to the same page? Will that work? -Original Message- From: Bret L Conard [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 12, 2002 7:33 AM To: [EMAIL PROTECTED] Subject: [PHP] Help with forms data please I need to send the data from a form

RE: [PHP] Help with forms data please

2002-06-12 Thread Niklas Lampén
Rosenberg [mailto:[EMAIL PROTECTED]] Sent: 12. kesäkuuta 2002 16:18 To: Bret L Conard; [EMAIL PROTECTED] Subject: RE: [PHP] Help with forms data please How about if you just return the user to the same page? Will that work? -Original Message- From: Bret L Conard [mailto:[EMAIL

Re: [PHP] Help with forms data please

2002-06-12 Thread 1LT John W. Holmes
Make the target of the form a blank window. process the form, then generate some javascript to close the window. original window remains unchanged. ---John Holmes... - Original Message - From: Bret L Conard [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, June 12, 2002 7:33 AM

Re: [PHP] Help with header function

2002-06-11 Thread Shane Kelly
LOL...thanks ed...figured it out last night... don't need to do a file_exists since i capture file_name in my db...I do a query before the insert to see if the file_name entered in the form, matches any of the file_names stored in mySQL. if the count of the record set 0 then the file exists,

RE: [PHP] help me please! :)

2002-06-10 Thread Kevin Porter
You need to escape the dollar sign with a backslash to prevent PHP trying to interpolate the variable $liv (which presumably doesn't exist). echo \$liv_$i; HTH, - Kev -Original Message- From: Veronica Ghezzi [SMTP:[EMAIL PROTECTED]] Sent: 10 June 2002 09:24 To: Php-General

Re: [PHP] help me please! :)

2002-06-10 Thread PHPCoder
?php $i = 1; $liv_1 = one; $liv_2 = two; $liv_3 = three; $liv_4 = four; $liv_5 = five; while ($i = 5 ) { $do = echo \$liv_{$i};; eval($do); echo br; $i ++; } ? Simply echoing the \$liv_$i will not work, need to evaluate the string after parsed as in example above... Kevin Porter wrote: You

Re: [PHP] help me please! :)

2002-06-10 Thread Marek Kilimajer
Try: for ($i=1; $i=$n;i++){ ... $tmp=liv_$i; echo {$$tmp}; ... } Veronica Ghezzi wrote: Hi, i must get the information saved in a several select list named liv_1 select name=liv_1 liv_2

Re: [PHP] help me please! :)

2002-06-10 Thread Josep R. Raurell
This work for me: liv_1select name=liv[1] liv_2select name=liv[2] liv_3select name=liv[3] liv_nselect name=liv[n] To get the value i work in this way... $liv= $_REQUEST['liv']; $n = 50; for ($i=1; $i=$n;i++){ ...

Re: [PHP] Help with header function

2002-06-10 Thread Stuart Dallas
On Monday, June 10, 2002 at 8:03:40 PM, you wrote: header(Location:http://www.mysite.com/file_exists.php;); You should have a space after Location:... header(Location: http://www.mysite.com/file_exists.php;); If that's not it, please post the error/what happens. We are not mind readers. --

Re: [PHP] Help with header function

2002-06-10 Thread Shane Kelly
I don't get an error message...but the page doesn't automatically forward to the redirected url. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Help with header function

2002-06-10 Thread Lazor, Ed
I'm pretty sure it was the lack of a space in the header field between Location: and the actual url. -Original Message- The only thing I can think of is that you have a syntax error in the header. -Kevin

Re: [PHP] Help with header function

2002-06-10 Thread Kevin Stone
Stone' [EMAIL PROTECTED]; PHP-general [EMAIL PROTECTED] Sent: Monday, June 10, 2002 2:00 PM Subject: RE: [PHP] Help with header function I'm pretty sure it was the lack of a space in the header field between Location: and the actual url. -Original Message- The only thing I can think

RE: [PHP] Help with header function

2002-06-10 Thread Lazor, Ed
LOL Yea, it's always much easier if we have actual code to work from rather than taking guesses in the dark. -Original Message- Why do I get the feeling I'm playing that mind bender game where you have to guess the right combination within so many turns? LOL

Re: [PHP] Help! Configuring PHP with Personal Web Server

2002-06-04 Thread Brian Feliciano
[EMAIL PROTECTED] writes: So far I've found about five different ways to install PHP with PWS and none of them work. Can anyone who has done this please send detailed instructions about how to do it, or point me to instructions that work? Thanks very much in advance. any error msgs? it'll help

Re: [PHP] Help! Configuring PHP with Personal Web Server

2002-06-04 Thread Jesse Segovia
Brian Feliciano [EMAIL PROTECTED] writes: So far I've found about five different ways to install PHP with PWS and none of them work. Can anyone who has done this please send detailed instructions about how to do it, or point me to instructions that work? any error msgs? it'll help a lot. Yes

RE: [PHP] help me....S.O.S...my php doesn't ascend

2002-06-01 Thread John Holmes
Maybe you should just ask your question in Spanish, because I have no idea what you just asked... Does it just not work? ---John Holmes... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Saturday, June 01, 2002 2:34 PM To: [EMAIL PROTECTED] Subject:

Re: [PHP] Help with Mail NEVERMIND

2002-05-30 Thread charlesk
Oops I was misspelling the recipients name. :) Charles Killmer -- Original Message -- From: charlesk [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Thu, 30 May 2002 09:09:33 -0500 I am getting a Server Error when I try to send an email to a domain

[PHP] RE:[PHP] Help with mail

2002-05-30 Thread r
What is this? magicians day? I have a dog, can you tell me why he barks sometimes? Show us some code dude, or is it code red classified? There could be a dozen possible reasons but if you show the code you stand a better chance of finding out what the problem is, from me or the other dudes on

Re: [PHP] RE:[PHP] Help with mail

2002-05-30 Thread Ed Gorski
You know why he barks? Tell me! At 08:06 PM 5/30/2002 -0700, r wrote: What is this? magicians day? I have a dog, can you tell me why he barks sometimes? Show us some code dude, or is it code red classified? There could be a dozen possible reasons but if you show the code you stand a better

Re: [PHP] Help with example session class (second request)

2002-05-30 Thread 1LT John W. Holmes
Call session_start() on your second page... ---John Holmes... - Original Message - From: Daevid Vincent [EMAIL PROTECTED] To: PHP general mailing list [EMAIL PROTECTED] Sent: Thursday, May 30, 2002 3:10 PM Subject: [PHP] Help with example session class (second request) Sorry for

RE: [PHP] Help with example session class (second request)

2002-05-30 Thread Daevid Vincent
Subject: Re: [PHP] Help with example session class (second request) Call session_start() on your second page... ---John Holmes... - Original Message - From: Daevid Vincent [EMAIL PROTECTED] To: PHP general mailing list [EMAIL PROTECTED] Sent: Thursday, May 30, 2002 3:10 PM

Re: [PHP] Help with example session class (second request)

2002-05-30 Thread Michael Davey
o:[EMAIL PROTECTED]] Sent: Thursday, May 30, 2002 12:19 PM To: Daevid Vincent; PHP general mailing list Subject: Re: [PHP] Help with example session class (second request) Call session_start() on your second page... ---John Holmes... - Original Message - From: Daevid Vincen

RE: [PHP] Help with example session class (second request)

2002-05-30 Thread John Holmes
' Subject: RE: [PHP] Help with example session class (second request) Thank you john for the prompt reply, however I must be completely retarded. I do this: ?php session_start(); if( $login-getSessionVar(login) ) { $booth_id = $login-getSessionVar

Re: [PHP] HELP!!! QUOTES!

2002-05-24 Thread Liam MacKenzie
echo My dog has \fleas\; - Original Message - From: Shane [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, May 25, 2002 9:20 AM Subject: [PHP] HELP!!! QUOTES! Question Please. What is the syntax for getting double quotes to appear in an echo statement. EXAMPLE: echo My dog

Re: [PHP] HELP!!! QUOTES!

2002-05-24 Thread Richard Baskett
Well if there are no variables to be parsed just do it like this: echo 'My dog has fleas'; // notice single quotes If there are variables to be parsed to it like this: echo My dog has \$var\; Cheers! Rick If I accept you as you are, I will make you worse; however, if I treat you as though

RE: [PHP] HELP!!! QUOTES!

2002-05-24 Thread John Holmes
Escape the quotes with \ echo My dog has \fleas\; Or use single quotes echo 'My dog has fleas'; But note that variables aren't evaluated within single quotes. ---John Holmes... -Original Message- From: Shane [mailto:[EMAIL PROTECTED]] Sent: Friday, May 24, 2002 7:21 PM To:

Re: [PHP] HELP!!! QUOTES!

2002-05-24 Thread Philip Olson
Read a tutorial about using strings here: http://www.zend.com/zend/tut/using-strings.php The manual also talks about them: http://www.php.net/manual/en/language.types.string.php Regards, Philip Olson On Fri, 24 May 2002, Shane wrote: Question Please. What is the syntax for getting

Re: [PHP] Help ! For Loop not working

2002-05-23 Thread Manisha
Sorry, got it, I am not doing $ii Sorry again Manisha At 10:33 AM 5/24/02 +0800, Manisha wrote: $fcontents is an array with 3 elements. But this for loop is not executing even once $ii=count($fcontents); echo($ii); for ($i = 0; $i ii; $i++) { print $i; } $ii has value = 3, But I am

RE: [PHP] Help ! For Loop not working

2002-05-23 Thread John Holmes
Missing a dollar sign in your for() loop definition. See if you can find out where... ---John Holmes... -Original Message- From: Manisha [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 23, 2002 10:34 PM To: [EMAIL PROTECTED] Subject: [PHP] Help ! For Loop not working $fcontents

RE: [PHP] Help ! For Loop not working

2002-05-23 Thread Peter
shouldn't or ($i = 0; $i ii; $i++) be or ($i = 0; $i $ii; $i++) ? -Original Message- From: Manisha [mailto:[EMAIL PROTECTED]] Sent: Friday, 24 May 2002 12:34 PM To: [EMAIL PROTECTED] Subject: [PHP] Help ! For Loop not working $fcontents is an array with 3 elements. But this for

Re: [PHP] Help .. deprecated messages

2002-05-22 Thread 1LT John W. Holmes
It's just a warning, not an error. It's probably always been there, but your error reporting was set to a level that didn't display it. Turn your error reporting level up in php.ini. it's set lower in PHP 4.1+ than it has been in the past. Best fix is to of course not use the mysql_db_query()

Re: [PHP] Help with file read

2002-05-19 Thread Jason Wong
On Sunday 19 May 2002 18:21, Josh Edwards wrote: Can someone look and help I have a function that returns the date in this format [10/Apr/2002:01:17:27 +1000] but I'm having trouble returning the last date in the file. [snip] $lastdate = getmydate($fcontents[count($fcontents)-1]);

Re: [PHP] help with undefined variables, please

2002-05-14 Thread Jerome Houston
hi- it is not REQUIRED for variables to be initialized in PHP, but if your error reporting is on too high, it will tell you, just to make sure you know. to turn your error reporting to a different level, you can change your php.ini:

Re: [PHP] help with undefined variables, please

2002-05-14 Thread The Gabster
thanks a lot gabi Jerome Houston [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... hi- it is not REQUIRED for variables to be initialized in PHP, but if your error reporting is on too high, it will tell you, just to make sure you know. to turn your

Re: [PHP] help with undefined variables, please

2002-05-14 Thread Philip Olson
PHP Notice: Undefined variable: action in C:\Apache\htdocs\easyletter2\easyletter.php on line 73 Why do I get an undefined variable error for $action, $pw, $disp, $found when they do not have to be declared in the script? if ($action==sign){ At this point, $action was not set. At

RE: [PHP] help with undefined variables, please

2002-05-14 Thread Matthew Walker
[mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 14, 2002 12:04 PM To: The Gabster Cc: [EMAIL PROTECTED] Subject: Re: [PHP] help with undefined variables, please PHP Notice: Undefined variable: action in C:\Apache\htdocs\easyletter2\easyletter.php on line 73 Why do I get an undefined variable error

RE: [PHP] help with undefined variables, please

2002-05-14 Thread Luc Saint-Elie
At 12:49 14/05/2002 -0600, Matthew Walker wrote: I prefer to use isset(), not empty(). It's more accurate, in that it knows the difference between a variable that just isn't set, and one that has an empty value (which may be valid). hello, You may want to do some tests. last time i did that :

RE: [PHP] help with undefined variables, please

2002-05-14 Thread Luc Saint-Elie
At 21:57 14/05/2002 +0200, Luc Saint-Elie wrote: 4.1 = isset() returns false if the variable is not set OR if the variable is empty typo.. wanted to say : 4.1 isset() returns true if the variable is set ORT if the variable is empty Luc -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] help with sort problem

2002-05-13 Thread Chris Hewitt
Nick, I would use two fields in the database, FirstName and LastName. The LastName should be mandatory in your input from the user. Then you can simply extract the data with an sql statement that uses order by LastName. If you have a significant number of records, this will be fastest. HTH

Re: [PHP] help with sort problem

2002-05-12 Thread Jason Wong
On Monday 13 May 2002 00:23, Nick Wilson wrote: Hi all, I hope someone might help me with a little puzzle... I have bunch of db results and one of the fields is 'name', I want to see if there are 2 parts to it like FirstName LastName and if so order by the last name. I can see explode()

RE: [PHP] help with sort problem

2002-05-12 Thread John Holmes
You really want to handle this in your database. If you need data to be in two fields, first name and last name, then put it in your database that way. Save yourself some time. How easy is it to just add another text field in your form, and insert one more variable into the database??? Whatever

RE: [PHP] help with sort problem

2002-05-12 Thread Jason Soza
and using PHP to do this for me seemed to be the easier choice. It's not, and doing it that way is far from efficient. HTH, Jason Soza -Original Message- From: John Holmes [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 12, 2002 1:26 PM To: 'PHP-General' Subject: RE: [PHP] help with sort problem

Re: [PHP] help with sort problem

2002-05-12 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then John Holmes declared Whatever kind of hack you come up with in PHP is going to be a waste of time and memory. Depends on your view point, the client was happy with one field for the name and now wants the records returned sorted

Re: [PHP] help with sort problem

2002-05-12 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then Jason Wong declared If that is what you want then: while (names) { explode the name if there is more than one element swap it, then join add this processed name onto a new array } use one of the array sort functions to

RE: [PHP] help !!!

2002-05-04 Thread Matt Friedman
Try www.php.net. Oh, no that's for php. I might know if this was a Delphi list. Hrm... Matt Friedman Web Applications Developer -Original Message- From: Yoel Benitez Fonseca [mailto:[EMAIL PROTECTED]] Sent: Saturday May 4, 2002 10:23 PM To: [EMAIL PROTECTED] Subject: [PHP] help !!!

RE: [PHP] Help with Bookmark

2002-05-03 Thread Brian McGarvie
an idea would to be not to use flat files for it... use a database, try mysql... -Original Message- From: Rodrigo [mailto:[EMAIL PROTECTED]] Sent: 03 May 2002 08:02 To: [EMAIL PROTECTED] Subject: [PHP] Help with Bookmark Hi guys I'm trying to make a online bookmark adress book, this

RE: [PHP] Help php MySql link

2002-05-03 Thread John Holmes
$db = (localhost,databasename,databasepassword); maybe add in a MySQL_connect() somewhere in there??? ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Help! Transparency using GD with PNGs!

2002-05-01 Thread olinux
I dont think transparent PNG's are possible with GD Maybe v2.0 will have something? olinux --- Cam [EMAIL PROTECTED] wrote: I've got PHP 4.2 and what I believe to be the newest version of the GD library up and running.. For some reason, my PNG images do not preserve their

RE: [PHP] Help need (Urgent)

2002-05-01 Thread Steve Bradwell
How are you printing the vars?? like this? echo $des; -Steve -Original Message- From: Luiz Rafael Culik Guimaraes [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 12:23 PM To: [EMAIL PROTECTED] Subject: [PHP] Help need (Urgent) Dear Friends I have an form that get the user

Re: [PHP] Help need (Urgent)

2002-05-01 Thread Philip Olson
Hi, In meu.php first do this: phpinfo(); And notice all the beautiful information within. Towards the botton you'll see a section called PHP Variables that will have something like _GET. All GET information will live in here ($_GET), So: print $_GET['des']; If you're trying $des and

RE: [PHP] Help on master detail

2002-04-30 Thread John Holmes
1. Can u guys provide any links on php script master details forms? http://www.google.com/search?sourceid=navclientquerytime=Bq=php+script +master+details+forms 2. data grids? http://www.google.com/search?sourceid=navclientquerytime=-ZMXjBq=data+ grids ---John Holmes... -- PHP General

Re: [PHP] [HELP] redirect browser pass variable !

2002-04-21 Thread Jason Wong
On Monday 22 April 2002 10:46, Joe wrote: I am using header function to redirect browser. { header(Location: http://www.XXX.edu/index.php;); exit;} Although it can redirect the browser but variable had not pass to next page. So can anyone teach me how to pass variable and redirect

RE: [PHP] Help on dealing with arrays of HTTP_POST vars

2002-04-15 Thread Matt Schroebel
-Original Message- From: Carlos Fernando Scheidecker Antunes [mailto:[EMAIL PROTECTED]] function SearchOrders() { global $Orders; global $HTTP_POST_VARS; $index = count($HTTP_POST_VARS); for($i=1; $i = $index; $i++) { The trouble is here . You should be

RE: [PHP] Help I killed PHP on mysever...

2002-04-09 Thread Martin Towell
um - pray which OS and web server are you running? -Original Message- From: Chuck PUP Payne [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 09, 2002 4:33 PM To: PHP General Subject: [PHP] Help I killed PHP on mysever... I have done something stupid and not PHP won't work. Everytime

Re: [PHP] Help I killed PHP on mysever...

2002-04-09 Thread Chuck \PUP\ Payne
SuSE 7.3(linux) Apache. on 4/9/02 2:43 AM, Martin Towell at [EMAIL PROTECTED] wrote: um - pray which OS and web server are you running? -Original Message- From: Chuck PUP Payne [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 09, 2002 4:33 PM To: PHP General Subject: [PHP] Help

Re: [PHP] Help I killed PHP on mysever...

2002-04-09 Thread Miguel Cruz
On Tue, 9 Apr 2002, Chuck PUP Payne wrote: I have done something stupid and not PHP won't work. Everytime you click on a link that is .php it wants you to download the file. What have I done and how can I fix it. Are you running Apache? Maybe you commented out or deleted this line in your

Re: [PHP] Help I killed PHP on mysever...

2002-04-09 Thread phplists
Refer to my earlier post about your AddType entries.. If they are not there, before you add them, check for a file on your system called mod_php4.conf.. If you find it, it will have the required entries in it already.. If this is the case, make sure your modules section in httpd.conf is

Re: [PHP] Help I killed PHP on mysever...

2002-04-09 Thread Chuck \PUP\ Payne
You know I can't find mod_php4.c where should that be? on 4/9/02 2:51 AM, [EMAIL PROTECTED] at [EMAIL PROTECTED] wrote: Refer to my earlier post about your AddType entries.. If they are not there, before you add them, check for a file on your system called mod_php4.conf.. If you find it, it

Re: [PHP] Help I killed PHP on mysever...

2002-04-09 Thread Mika Tuupola
On Tue, 9 Apr 2002, Chuck PUP Payne wrote: I have done something stupid and not PHP won't work. Everytime you click on a link that is .php it wants you to download the file. What have I done and how can I fix it. This happens when you recompile and reinstall php as a module

Re: [PHP] Help I killed PHP on mysever...

2002-04-09 Thread Chuck \PUP\ Payne
No, I have reinstall. So much I about to throw my box. PHP just wont load now everything I have work now it lost. Chuck on 4/9/02 3:28 AM, Mika Tuupola at [EMAIL PROTECTED] wrote: On Tue, 9 Apr 2002, Chuck PUP Payne wrote: I have done something stupid and not PHP won't work. Everytime you

RE: [PHP] Help I killed PHP on mysever...

2002-04-09 Thread James Cox
PUP Payne [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 09, 2002 8:31 AM To: Mika Tuupola Cc: PHP General Subject: Re: [PHP] Help I killed PHP on mysever... No, I have reinstall. So much I about to throw my box. PHP just wont load now everything I have work now it lost. Chuck on 4/9/02 3:28 AM

Re: [PHP] Help I killed PHP on mysever...

2002-04-09 Thread Chuck \PUP\ Payne
://www.amazon.co.uk/exec/obidos/wishlist/23IVGHQ61RJGO/ -Original Message- From: Chuck PUP Payne [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 09, 2002 8:31 AM To: Mika Tuupola Cc: PHP General Subject: Re: [PHP] Help I killed PHP on mysever... No, I have reinstall. So much I about

Re: [PHP] HELP! Errors!

2002-04-08 Thread Kevin Stone
Bad file descriptor = invliad pointer = your file doesn't exist. - Original Message - From: Georgie Casey [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, April 08, 2002 1:27 PM Subject: [PHP] HELP! Errors! my host returns this err message when i try to open a page on another

Re: [PHP] HELP!

2002-04-06 Thread Miguel Cruz
On Sat, 6 Apr 2002, Georgie Casey wrote: I need to execute a script on another server in one of my scripts, eg by visiting a link http://www.com.com/script.php?var1=blahvar2=blah i cant use curl or sockets as my server dont have them insatlled. what other options do i have? the variables

RE: [PHP] Help with Function parameter

2002-04-04 Thread Martin Towell
Your problem lies in these lines Return $realday; Return $month; Return $year; and Datereturn(); A function can only return one value - that value can be an array (see later) To use the returned value, you need to assign it to something (or use it directly) So, change your return to

RE: [PHP] Help with Function parameter

2002-04-04 Thread Maxim Maletsky
Turn error_reporting to: error_reporting (E_ERROR | E_WARNING | E_PARSE); // that is the function to mess in the code, you can also set it within php.ini then fix your function: It cannot have more then one return (sure it can, but will break the execution on the first-come basis). If you

RE: [PHP] Help with e-mail...

2002-04-03 Thread Rick Emery
send an email to yourself: ?php mail([EMAIL PROTECTED],test subject,This is my test message,From: [EMAIL PROTECTED]\n) ? -Original Message- From: Chuck PUP Payne [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 03, 2002 3:26 PM To: PHP General Subject: [PHP] Help with e-mail... I

Re: [PHP] Help with e-mail...

2002-04-03 Thread Chuck \PUP\ Payne
Thanks! I was able to send an e-mail so now I have to figure out why this guy script isn't sending reminders Chuck On 4/3/02 4:30 PM, Rick Emery [EMAIL PROTECTED] wrote: send an email to yourself: ?php mail([EMAIL PROTECTED],test subject,This is my test message,From: [EMAIL

Re: [PHP] Help with e-mail...

2002-04-03 Thread Miguel Cruz
On Wed, 3 Apr 2002, Chuck PUP Payne wrote: Thanks! I was able to send an e-mail so now I have to figure out why this guy script isn't sending reminders If it's going to send mail at arbitrary times in the future, something needs to make it run at those times. Does it come with a component

Re: [PHP] help please - strange session behaviour on IIS with php4.1.2

2002-04-02 Thread Stephen Phillips
Hi, It sounds like you are experiencing a similar problem to one I had. It seems there are some problems with setting cookies when using IIS, and as I understand it one of the ways that sessions work is by storing the data in a cookie on the clients machine. On the page at www.php.net it

Re: [PHP] help please - strange session behaviour on IIS with php4.1.2

2002-04-02 Thread Wolfram Kriesing
On Tuesday 02 April 2002 15:34, Stephen Phillips wrote: Hi, It sounds like you are experiencing a similar problem to one I had. It seems there are some problems with setting cookies when using IIS, and as I understand it one of the ways that sessions work is by storing the data in a

Re: [PHP] help please - strange session behaviour on IIS with php4.1.2

2002-04-02 Thread Hiroshi Ayukawa
I have the same problem, while I'm using Apache for web server / Win2k. It seems that it depends on register_globals=On or Off. When the register_globals=On, it works well. But when the register_globals=Off I've got the same situation; session doesn't work. I guess this is a bug of

Re: Re: [PHP] help please - strange session behaviour on IIS with

2002-04-02 Thread Adam Voigt
I run this setup on Win2k Advanced Server talking to a Microsoft SQL 2000 Server, with sessions of both cookie type and URL-SessionID server side based, with absolutely no problems. Adam Voigt [EMAIL PROTECTED] On Wed, 03 Apr 2002 04:37:07 +0900, Hiroshi Ayukawa [EMAIL PROTECTED] wrote: I have

Re: [PHP] HELP PLEASE!

2002-03-28 Thread heinisch
At 27.03.2002 21:20, you wrote: Even if I didn´t read your code exactly, the fault is the do while loop replace it with something like this while ($row = mysql_fetch_array($result)) { for($i=0,$i count($row);$i++) { // add something to make it fancy like a table or so

Re: [PHP] HELP PLEASE!

2002-03-28 Thread hugh danaher
: Thursday, March 28, 2002 12:33 AM Subject: Re: [PHP] HELP PLEASE! At 27.03.2002 21:20, you wrote: Even if I didn´t read your code exactly, the fault is the do while loop replace it with something like this while ($row = mysql_fetch_array($result)) { for($i=0,$i count($row);$i

Re: [PHP] Help with Acrobat FDF support

2002-03-28 Thread Rasmus Lerdorf
You have to build the FDF extension to include FDF support by adding the --with-fdftk to the PHP build flags. -Rasmus On Thu, 28 Mar 2002, Robert Stoeber wrote: I just found the very cool looking new FDF functions to support Acrobat forms. According to the documentation at www.php.net I

Re: [PHP] Help! Recent PHP security patch = high server load?

2002-03-27 Thread Rasmus Lerdorf
I don't really see how that patch could cause that. Any chance of an truss or a gdb backtrace or something on one of these guys to give us a clue? -Rasmus On Thu, 28 Mar 2002, Jason Murray wrote: Hi folks, Just curious to know if anyone has experienced a high server load since installing

[PHP] Re:[PHP] HELP ME PLEASE: php not run on IIS 4.0

2002-03-25 Thread Liam
25/03/2002 8:27:51 PM hehehe You could start with loosing IIS, it's bad news. The port of Apache for windows is good, if not, Xitami's also quite good. http://www.apache.org/dist/httpd/binaries/win32/ http://www.xitami.com/ But, no, sorry. I can't help you. Berlina [EMAIL PROTECTED] wrote

Re: [PHP] help with date formatting

2002-03-18 Thread Mark Heintz PHP Mailing Lists
Since you're using phpmyadmin, I'm assuming you're using mysql. You could use the built-in date and time functions to do the formatting when selecting your date field. Check here: http://www.mysql.com/doc/D/a/Date_and_time_functions.html mh. On Mon, 18 Mar 2002, Ryan wrote: Hi, I'm trying

Re: [PHP] help with date formatting

2002-03-18 Thread Ben Edwards
I use string manipulation on the date, basically split it into $day, $month and $year and use this to product formatted output. Ben At 17:51 18/03/2002, Ryan wrote: Hi, I'm trying to create an events page, where it shows the posted events. I enter data using phpmyadmin. Currently, the ouput

Re: [PHP] help with date formatting

2002-03-18 Thread mnc
On Mon, 18 Mar 2002, Ryan wrote: Hi, I'm trying to create an events page, where it shows the posted events. I enter data using phpmyadmin. Currently, the ouput is like this: 2002-03-06 I'm having trouble with the formatting of the date. I'm using the type date with the function now,

Re: [PHP] Help w/passing a search parameter that includes space and ,

2002-03-15 Thread Jason Wong
On Saturday 16 March 2002 00:38, Jack Sasportas wrote: I have never passed a search value with a space or a comma , in it, but here is the first time. What happens is that IE puts in the space and takes the whole value as the parameter and correctly finds the result we are looking for from

Re: [PHP] Help in PHPDoc

2002-03-12 Thread Andrey Hristov
I used it few times. You have to make modifications to index.php, so the engine will know where to look to for .php scripts that have to be documented. I've attached my index.php - Original Message - From: S.Murali Krishna [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, March 12,

Re: [PHP] Help in PHPDoc

2002-03-12 Thread S.Murali Krishna
Hi Andrey Thanks for your kind response first. I did the way you told but still after executing index.php, there is nothing in my doc directory just see the following snap of my code. I want to create documentation for ./xPage/xPagedoc.inc file and want the documentation to be in

Re: [PHP] Help in PHPDoc

2002-03-12 Thread Andrey Hristov
Hristov - Original Message - From: S.Murali Krishna [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: S.Murali Krishna [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, March 13, 2002 7:41 AM Subject: Re: [PHP] Help in PHPDoc Hi Andrey Thanks for your kind response first. I

RE: [PHP] Help w/ join syntax

2002-03-11 Thread Rick Emery
What do you mean it doesn't work? What results are you getting? Specifics...we need specifics... -Original Message- From: Anthony Rodriguez [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 6:44 AM To: [EMAIL PROTECTED] Subject: [PHP] Help w/ join syntax When I call the

RE: [PHP] HELP UNIX vs Windows

2002-03-07 Thread Ford, Mike [LSS]
-Original Message- From: Christopher J. Crane [mailto:[EMAIL PROTECTED]] Sent: 07 March 2002 02:26 The problem is that on the windows platform all information is returned. On the linux platform the $Details variable is not populated. The nothing changes...so what could it be.

Re: [PHP] help with date formatting

2002-03-06 Thread Anas Mughal
Sure, you could do something like: $event_month = substr($event_row[Date], 5, 2); $event_day = substr($event_row[Date], 8, 2); $event_year = substr($event_row[Date], 0, 4); $msgBody = Date: . date(l, mktime(0,0,0,$event_month, $event_day, $event_year)) . , . date(F,

Re: [PHP] Help with a search array.

2002-03-06 Thread Hank Marquardt
$words = explode( ,$keywords); foreach($words as $word) { Create your sql. } .. or $words[0] = 'first word', $words[1]='second word' That will do what you asked, though I suspect you'll be back when you want to add quoted phrases, such that you could have $q = green eggs and

Re: [PHP] Help with a search array.

2002-03-06 Thread Philip J. Newman
[EMAIL PROTECTED] To: Philip J. Newman [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, March 07, 2002 10:21 AM Subject: Re: [PHP] Help with a search array. $words = explode( ,$keywords); foreach($words as $word) { Create your sql. } .. or $words[0] = 'first word', $words[1]='second

Re: [PHP] Help with a search array.

2002-03-06 Thread Hank Marquardt
, March 07, 2002 10:21 AM Subject: Re: [PHP] Help with a search array. $words = explode( ,$keywords); foreach($words as $word) { Create your sql. } .. or $words[0] = 'first word', $words[1]='second word' That will do what you asked, though I suspect you'll be back when you want

Re: [PHP] Help with a search array.

2002-03-06 Thread Philip J. Newman
PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, March 07, 2002 10:21 AM Subject: Re: [PHP] Help with a search array. $words = explode( ,$keywords); foreach($words as $word) { Create your sql. } .. or $words[0] = 'first word', $words[1]='second word' That will do what

Re: [PHP] Help about Linux password change script

2002-03-05 Thread Erik Price
On Tuesday, March 5, 2002, at 02:25 PM, Henry Zambrano wrote: 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

Re: [PHP] Help about Linux password change script

2002-03-05 Thread bvr
# passwd -? Usage: passwd [OPTION] accountName --stdin read new tokens from stdin (root only) bvr Henry Zambrano wrote: 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

RE: [PHP] Help with MySQL.

2002-03-05 Thread Dan Vande More
Once in your telnet session, from the command line type 'telnet localhost 3306' or 'telnet 127.0.0.1 3306' Keep in mind this only proves the host is there, it doesn't disprove. The machine may not know itself as localhost(unlikely) or the mysql server may not be living on 3306. If you get some

Re: Re: [PHP] Help with MySQL.

2002-03-05 Thread GENESiS DESiGNS
Dan, What do you mean by : If you get some weird characters(most likely the version and some other chars) then the server is itself, is the mysql host. Because thats what happens. Thanks, -GENESiS DESiGNS -Sean Kennedy -http://www.gdesigns.vcn.com -- PHP General Mailing List

RE: Re: [PHP] Help with MySQL.

2002-03-05 Thread Dan Vande More
their mysql server, they may not know the password. Dan -Original Message- From: GENESiS DESiGNS [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 05, 2002 8:12 PM To: [EMAIL PROTECTED] Subject: Re: Re: [PHP] Help with MySQL. Dan, What do you mean by : If you get some weird characters(most

<    11   12   13   14   15   16   17   18   19   20   >