[PHP] Getting a value back from POST (not the built-in return)

2003-01-28 Thread Paul
ue usually retrieved by fgets($fp etc...) which is then available to the sending machine. Searching via Google hasn't given me an answer. Is it possible? Can somebody help? Syntax would be very nice, I'm not a PHP guru. TIA, Paul -- PHP General Mailing List (http://www.php.net/) T

Re: [PHP] Getting a value back from POST (not the built-in return)

2003-01-28 Thread Paul
;HTTP 1.1' exactly, or nothing at all in the return value. Can you fill me in on the syntax here? How would you write the fgets statement and how would you define and populate the return value on the other end? Chris wrote: --- Paul <[EMAIL PROTECTED]> wrote: >> Using a fairl

Re: [PHP] Remembering which option in a SELECT tag the user had chosen

2003-01-30 Thread Paul
Inside HTML code, parsed as php, in a select, I've been using the below. It's a bit longer than your plan to use arrays, but it works fine. -- Select a country -- >United States >Afghanistan and so forth -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.

[PHP] include_path problem on RH 8

2003-02-04 Thread Paul
ried many variations on the path syntax, and settled on the simplest possibility, but it still doesn't pick it up. At the moment, /usr/share/pear is not in that statement. Anybody got any good ideas? TIA, Paul -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: include_path problem on RH 8

2003-02-04 Thread Paul
Thanks for the info. But I notice that I didn't really state the essence of my problem, which is that I can't get PHP to locate any include directory I put in the php.ini, thus no files I want to include get included. Paul schrieb: >> Using RH 8, php 4.2.2, Apache 2.0, I

[PHP] Globals off and passing data

2003-02-08 Thread Paul
tutorial exist for this? TIA, Paul -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Globals off and passing data

2003-02-08 Thread Paul
I'm opening a socket to the remote machine and using post to send the data. But please enlighten me, what is the usual method of accessing a remote database? Jason Wong wrote: On Sunday 09 February 2003 06:32, Paul wrote: >> I'm working in a multitiered envoronment in developm

[PHP] Deleting a page after viewing it

2003-02-26 Thread Paul
which is on another server. Do I need to include something in the second page that will do the deleting, or can I delete it from within the script for the first page that deletes as of the click on the URL. Haven't written any code yet for this, but I'm thinking "unlink." TIA

[PHP] RE: [PHP-DB] Queries probably timing out

2003-08-19 Thread Paul
, adds PEAR and ADODB) Cheers, Paul -Original Message- From: Ignatius Reilly [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 19, 2003 3:00 AM To: Dillon, John; PHP-DB List Subject: Re: [PHP-DB] Queries probably timing out - Original Message - From

[PHP] ntp client??

2003-06-11 Thread Paul
Hey Guys, I've had a look around but no luck watsoever. If someone could give me a short answer on this one? Is it possible to make a php ntp client? If so give me your opinion on getting it done please? Paul -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Re: ntp client??

2003-06-12 Thread Paul
yes. I hope this isn't a really dumb question. "Brian McGarvie" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > I've had a look around but no luck watsoever. If someone could give me a > > short answer on this one? Is it possible to make a php ntp client? If so > > give me your op

[PHP] Help please

2002-08-14 Thread paul
chines. I have absolutely no idea what I did wrong. Can someone point me in the right direction? Thanks so much in advance. Paul Kelly -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Help Please

2002-08-15 Thread paul
ht be an apache question. Either way, any help is greatly appreciated. Thanks very much in advance; Paul Kelly -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Small PHP project - will pay!

2002-09-23 Thread Paul
I have a small PHP project that currently needs to be built based on Microsoft MSDE database (already in place) and later on perhaps move it to MySQL.. If interested please contact me [EMAIL PROTECTED] Thanks Paul -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Am I blind? simple 15 line code producing error

2002-11-03 Thread Paul
Perhaps I am blind but I have the following simple code that gets me errors: The error is: Warning: Cannot add header information - headers already sent by (output started by.. ..line 6) ...on line 12 Line 6 is the line with if ($HTTP_SESSION_VARS[user_id]) Line 12 is the line starting with head

RE: [PHP] Am I blind? simple 15 line code producing error

2002-11-03 Thread Paul
Yes, I use those in other pages with no problem..it just this page causes some problems.. -Original Message- From: Sascha Cunz [mailto:Sascha@;GaNoAn.org] Sent: Sunday, November 03, 2002 1:03 PM To: Paul; [EMAIL PROTECTED] Subject: Re: [PHP] Am I blind? simple 15 line code producing

[PHP] Global Variables Off

2002-11-03 Thread Paul
t get the value? I use it in the following statement (checking if error_message is empty) : if ($_GET["error_message"]) Thanks Paul -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Global Variables Off

2002-11-03 Thread Paul
I am passing it via URL as: http://example.org/test.php?test=foo When I do that call to $_GET["test"] shows that variable is not set, however, when I run phpinfo() it shows value assigned to _GET. With no change in code, I turn global variables 'on' and the same page works..

RE: [PHP] Global Variables Off

2002-11-03 Thread Paul
Makes no difference..I tried them both -Original Message- From: John Nichel [mailto:jnichel@;by-tor.com] Sent: Sunday, November 03, 2002 10:59 PM To: Paul Cc: 'Chris Shiflett'; [EMAIL PROTECTED] Subject: Re: [PHP] Global Variables Off Try single quotes... $_GET['test

RE: [PHP] Global Variables Off

2002-11-03 Thread Paul
OK I guess I am closer = the variable is being passed as I tested but I guess is failing on the test: if (isset($_GET["error_message"])) Thank you for all your help Paul -Original Message- From: Chris Shiflett [mailto:shiflett@;php.net] Sent: Sunday, November 03, 2002 1

RE: [PHP] Am I blind? simple 15 line code producing error - SOLUTION FOUND! - tks

2002-11-04 Thread Paul
ting warning: Cannot add header information. The code worked before but I guess it was broken once Global Vars were turned off in the resent version of PHP Thank you to all the replies Paul -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Reading unknown number of form variables -? need a hint/help..

2002-11-07 Thread Paul
piece of code that I can look at it and learn from? Any help would be greatly appreciated Paul PS I also would like to place a checkbox (in every row) in the event the item must be deleted.. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Reading unknown number of form variables -? need a hint/help..

2002-11-07 Thread Paul
piece of code that I can look at it and learn from? Any help would be greatly appreciated Paul PS I also would like to place a checkbox (in every row) in the event the item must be deleted.. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] registering object in session - Object to string notice error?

2002-11-08 Thread Paul
rsion in C...\page_vip.php on line 27 How can I avoid this? It does not stop code and it is not a fatal error but perhaps I am missing something Paul -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Problem with Class - incomplete object error

2002-11-17 Thread Paul
was loaded _before_ the session was started in on line 59 Where line 59 is pointing to $cart->AddItem($_GET['item_id']) Session_start is present in every page. Could anyone help me understand where the problem is? Thanks Paul -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] RE: Problem with Class - incomplete object error

2002-11-18 Thread Paul
Yes, I have included class definition on the top of the page. The reason that was using $cart is the fact that I was calling methods/functions of the object such as $cart->AddItem()..and I was not sure whether $_Session['cart']->AddItem would be a correct way or not Paul -

[PHP] imageloadfont() broken?

2003-10-16 Thread Paul
Ok ive spent numerous hours trying to just find one working example of imageloadfont() and i have yet to come across one. Right now im at about the point to hack apart the gd source code to change one of their built in fonts. but id rather not do that. So exactly how does imageloadfont() work,

Re: [PHP] using ImageGIF

2003-10-16 Thread Paul
To my understanding, gif is licensed, therefore its not used in the current gd libraries. I believe the licensing is up in july of 2004, and the support would be reimplemented after then, but not 100% positive. Go head over to the GD website to read more info about gif. --- Louie Miranda <[EMAI

Re: [PHP] using ImageGIF

2003-10-16 Thread Paul
iranda > http://www.axishift.com > > > - Original Message - > From: "Paul" <[EMAIL PROTECTED]> > To: "Louie Miranda" <[EMAIL PROTECTED]>; > <[EMAIL PROTECTED]> > Sent: Friday, October 17, 2003 10:52 AM > Subject: Re: [PHP] u

RE: [PHP] First test release of BTportal made!!!!

2003-11-09 Thread Paul
You might consider creating your own lists to make releases and leave php-list alone. Imagine what it will happen if everybody will post their "releases" on the list. Cheers! Paul -Original Message- From: Bas [mailto:[EMAIL PROTECTED] Sent: Sunday, November 09, 2003 6:18 PM

[PHP] ERROR on PHP.net index page!!!

2003-11-24 Thread Paul
#x27;' . str_replace( array( ' ' '', '\n", ''; You missed a comma on the third line in this code (line 29 in layout.inc). Paul -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Bizzare form problem - Please Help!

2004-01-06 Thread Paul
Sorry if this is a repost, I could not see the original. Any help with this would be immensely appreciated! Here is what the problem I am having is: I have a .php page. There are several form fields. When I populate the fields, submit to another page, and then use the browser's back button, the

Re: [PHP] Bizzare form problem - Please Help!

2004-01-06 Thread Paul
he page instead." and force the page to not be cached. Any other ideas? wrote in message news:[EMAIL PROTECTED] > Hi Paul, > > Paul wrote: > > I have a .php page. There are several form fields. When I populate > > the fields, submit to another page, and then use t

Re: Re[2]: [PHP] Bizzare form problem - Please Help!

2004-01-06 Thread Paul
eas the .php one won't. Try it without clicking the 3rd field and they both will have the data when going back. Assuming we are using the same browser (IE6?) Thanks again and if you wouldn't mind sending your sample transfer script stuff that would be great so I can consider the al

[PHP] Form variables + sessions, is this how it is supposed to work?

2004-01-24 Thread Paul
Thanks for any advice. If I register a session variable, set its value with one form and then try to change its value with another form, it seems to retain only the original value and is not replaced with the newly posted one? Is this how it is supposed to work and I have to unset the variable to

Re: [PHP] Form variables + sessions, is this how it is supposed to work?

2004-01-24 Thread Paul
OK thanks. I figured out my problem but I am not sure why this is. I am trying to impliment a back button to allow the user to go back and change form values. If I uses sessions and register $test then this does not work, it sticks does not change the value of $test if the user re-submits: Tha

Re: [PHP] Form variables + sessions, is this how it is supposed to work? - Grammar corrected

2004-01-24 Thread Paul
I figured out my problem but I am not sure why this is. I am trying to implement a back button to allow the user to go back and change form values. If I use sessions and register $test then this does not work, the value of $test does not change if the user re-submits: Thanks for any he

[PHP] Re: Sample code

2004-01-24 Thread Paul
"Paul" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I figured out my problem but I am not sure why this is. > > > > I am trying to implement a back button to allow the user to go back and > change form values. > > > > If I use sessions a

[PHP] Repost - Form/Session Problem with sample code = Probably easy question - Thanks for any help!

2004-01-25 Thread Paul
I am trying to use a back button to allow a user to change submitted form values. The problem I am having is that when they submit the form a second time, regardless of what is entered, the variable $test does not change and keeps only the first value assigned to it! I am able to solve this by usi

[PHP] Help! Oracle...

2001-01-16 Thread Paul
ORACLE_HOME /u01/app/oracle/product/8.1.5/ Libraries Used (none listed) Thanks! Paul -- ___ Paul Luscher Web Developer Studeo Interactive Direct Ph. 801.993.2219 [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail

[PHP] comparing values

2001-03-04 Thread Paul
below is the code I am using, $sourcefile is a url var for example http://url/?sourcefile=/this/path/to/whatever.php $filelist = array("", "db_auth.conf", "config.php", "master.functions.inc" );/* these are the files I want to protect from t

Re: [PHP] update two frames at once?

2001-03-13 Thread Paul
This may work, but it defeats the purpose of frames, which is to reduce reloading time. You would need to point to the frameset page, and have variables passed into each frame: (your title) ?> > > Hello al! > > > > > > Is it possible to have two frames updated when cliking on one link

[PHP] New mailparse extensions

2002-01-10 Thread Paul
anyone produced anything silimar? Also, does anyone have any idea as to when the mailparse docs will be completed. I guess you can say I'm a little anxious. Thanks in advance, Paul -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional com

[PHP] Authenticating via http

2002-01-10 Thread Paul
Here's a really quick question. I can't figure out how to try to get user authentication more than once. For instance, supposed I get this log on screen that asks for my username and password. If I type in something wrong that variable gets stuck in $PHP_AUTH_USER, and there is no way to unset

[PHP] mail() & getenv() problems (after 4.1.2 update)...

2002-03-07 Thread Paul
ng before the upgrade, as a log in script I use on the main site uses getenv($HTTP_REFERER) to send them back to where they came from. This again worked 100% fine before PHP upgrade. Sorry to take up your time, but there is a problem somewhere that has certainly only begun with PHP since I upgraded to 4.1.2, and I dont know what it could be!? Thanks in advance. Paul Mullett -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: mail() & getenv() problems (after 4.1.2 update)...

2002-03-07 Thread Paul
Can nobody help? This is so frustrating. I cannot see what's wrong, open to ANY suggestions! Thanks. Paul "Paul" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hello, > > I wonder if anyone can help me with a problem

[PHP] Re: mail() & getenv() problems (after 4.1.2 update)...

2002-03-08 Thread Paul
Keith, can you tell me if you're also having the same issue with getenv() as I am? I am glad it's not just me experiencing this issue, as no-none replied I was beginning to wonder! Paul "Keith Waters" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]"&

[PHP] building a control panel in php

2002-03-19 Thread Paul ...
Hello all, just thinking about making a small control panel for my server so i can do the web hosting related things from the web... would php be a good language to do this in and if so why?.. what would be the ups and downs? Paul -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] date_default_timezone_get() differs from ini_get('date.timezone');

2010-06-08 Thread Paul
p.ini, due two facts: 1. phpinfo() displays the same ini and all settings from the file (but not timezone) 2. ini_get() returns the right setting as well (but it will not be used). Can somebody explain to me, what happens here? Thanks a lot and kind regards, Paul -- PHP General Ma

[PHP] A to Z incremental

2004-04-22 Thread Paul
Hi! Got this script: The output is: A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | AA | AB | AC | ... YX | YY | YZ | where is should display only letters from A to Z. Why is that? -- Best regards, Paul

Re[2]: [PHP] A to Z incremental

2004-04-22 Thread Paul
J | K | L | M | N | O | P | Q | R >> | S | T | U | V | W | X | Y | Z | AA | AB | AC | ... YX | YY | YZ >> | >> >> where is should display only letters from A to Z. >> Why is that? >> PG> Hi, Paul. Try this instead. ... Thanks Pablo! I know that but

[PHP] Command line socket server and SSL

2007-09-04 Thread Paul
anyone help or point me in the right direction? TIA, Paul W -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Command line socket server and SSL

2007-09-04 Thread Paul
Chris wrote: Paul wrote: I need to program a socket server in PHP that can use a certificate and communicate over SSL. I'm doing fine without SSL. Can't use port 443 or the web server for this, so it needs to be a command line app. Can't seem to find any documentation about how

Re: [PHP] Command line socket server and SSL

2007-09-05 Thread Paul
Below you have described a client. I'm talking about a server. That was clear in my original post. -Paul W Greg Donald wrote: On Tue, 4 Sep 2007, Paul wrote: Which part do you need help with? The SSL part or the command line or the port or ... ? http://www.php.net/openssl http://www.ph

Re: [PHP] Command line socket server and SSL

2007-09-05 Thread Paul
Greg Donald wrote: On Wed, 5 Sep 2007, Paul wrote: Below you have described a client. I'm talking about a server. That was clear in my original post. Why on earth would you need to implement an SSL socket in PHP when we have Apache and openssl? That's pointless. Anywhere PHP can

Re: [PHP] Command line socket server and SSL

2007-09-05 Thread Paul
Greg Donald wrote: On Wed, 5 Sep 2007, Paul wrote: Because the client is incapable of HTTPS or HTTP protocols. Not that I really should need to answer this. Why on earth would you assume I don't have a good reason? In what way is this answer to my question even a little helpful? It&

Re: [PHP] New Help with Javascript Navigation

2006-04-26 Thread paul
might look like this: where phpToJavaScript.php is the translation program and myscript.php is the "client-side PHP" script to be translated to JavaScript. Paul -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Stupid newbie question = Why don't I need a ; after this line?

2004-01-26 Thread Paul
Thanks for any advice. Can anyone tell me why I do not get any errors with ( no ; after _id'] ) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Stupid newbie question = Why don't I need a ; after this line?

2004-01-27 Thread Paul
g keystrokes. I only noticed this when I was going over some code. "Paul" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Thanks for any advice. > > Can anyone tell me why I do not get any errors with ( no ; after _id'] ) > > > > -- PHP Ge

[PHP] Session help please?

2004-04-01 Thread Paul
Probably a stupid question. I figured I could do something like $_SESSION['test'] = 5 and refer to $test on other pages however I cannot. The reason I thought I could do this is because I can do $_SESSION['test'] = $_POST['test'] and be able to refer to just $test on other pages. Is the correct w

[PHP] PHP & Mysql Developer needed in South Africa

2005-10-13 Thread Paul
I have a position open for someone in Johannesburg South Africa with the following skills. php mysql css xml xhtml Image and artwork a bonus (ImageReady,Photoshop, Paintshop, The gimp) Flash a bonus Please email me directly at [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] ■PCソフト安値販売■業界初システム

2005-12-12 Thread Paul
? On 12/12/05, dmzkaqmzdp5 <[EMAIL PROTECTED]> wrote: > > PCユーザーにお得な情報を一方的に配信させていただきましたことお詫びいたします > > このメールは送信専用メールアドレスから配信されています。ご返信いただいてもお答えできませんのでご了承ください。 > ご質問等のある方はhttp://www.11279.com/のお問い合わせからご連絡ください。 > 配信停止希望の方は下記 配信停止よりお願いします。 > > 〜〜〜配信停止〜〜〜 > samurai_madoguti_samurai○

Re: [PHP] Re: What's a Blog?

2006-02-14 Thread Paul
errr Firstly blogging is not a fad, there are over 100 million blogs on the net today secondly. wordpress is extremely popular www.wordpress.org and thirdly its free regards Paul Kain www.BlogMad.net On 2/14/06, Brice <[EMAIL PROTECTED]> wrote: > On 2/13/06, Sam Smith <[EMA

[PHP] Interactive external program execution

2001-01-29 Thread Paul
at some point. If anyone has some insight into this problem, their help, or a pointer in the right direction, would be appreciated. All the best, -- Paul Replace "spamtrap" with "paul" to reply by e-mail -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-ma

RE: [PHP] using cookies

2002-11-23 Thread Paul Marinas
dose anyone how to send a "ping" in local network thanks Paul Marinas Technical Support RDS Craiova Phone: +402-51-410-194 Mobile: +407-22-451-439 Fax:+402-51-416-579 www.rdsnet.ro . Privileged/Confidential Information may be

[PHP] Connection string and Monday Morning blues

2002-11-24 Thread Paul Dionne
Ug, I hate Mondays. must drink more coffee. Anyway, got a problem I hope someone can help with or at least jumpstart my brain. I wrote a few web pages, work fine on my machine. Uploaded them on Friday and they don't seem to work. Looks like I am not connecting to the database because every

[PHP] www.php.net

2002-11-25 Thread Paul Marinas
is down? or my computer . Paul Marinas Technical Support RDS Craiova Phone: +402-51-410-194 Mobile: +407-22-451-439 Fax:+402-51-416-579 www.rdsnet.ro . Privileged/Confidential Information may be contained in this message. If you are

[PHP] Re: test for ascii or binary string

2002-11-30 Thread Paul Chvostek
e represented as "IBM Extended ASCII" or whatever you want to call it. But the string is just a string of bits. -- Paul Chvostek <[EMAIL PROTECTED]> Operations / Abuse / Whatever +1 416 598-

[PHP] Re: Hello ! How to write a programme in PHP which executes a routine at a given time ?

2002-11-30 Thread Paul Chvostek
ment producer 3. Do you mind to tell me how to make a PHP programme > to execute a centian routine at a given time ? Thank you ! -- Paul Chvostek <[EMAIL PROTECTED]> Operations / Abuse / Whatever +1 416 598- it.

[PHP] Re: Multidimensional array

2002-11-30 Thread Paul Chvostek
you Yahoo!? > Yahoo! Mail Plus - Powerful. Affordable. Sign up now. > http://mailplus.yahoo.com > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php -- Paul Chvostek <[EMAIL PROT

[PHP] Re: Multidimensional arrays (more and more...)

2002-11-30 Thread Paul Chvostek
quot;; > $issue[]["month"] = "05"; > $issue[]["year"] = "2003"; > $issue[]["description"] = "description"; > > What I need to do now is count(), sort() by number, > and loop through this array. > > I read that PHP i

[PHP] Re: Multidimensional arrays (more and more...)

2002-11-30 Thread Paul Chvostek
ort something other than the number of elements in $issue. I never count my multidimensional arrays so it's never come up for me. :-/ -- Paul Chvostek <[EMAIL PROTECTED]> Operations / Abuse / Whatever +1 4

[PHP] last updated ?

2002-11-30 Thread Paul O'Neil
Dumb question here but whats the general practice regarding putting a "website last updated:" entry on a web page? Does the web master manually enter in today's date in a database table entry and let PHP display. Is it statically added to the HTML page? Etc... -- PHP General Mailing List (http:/

Re: [PHP] How to override header info in mail()

2002-11-30 Thread Paul Nicholson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hey, The correct way of doing that is: if (!mail($to, $subject, $body, "From: ". $from ."\r\nContent-type". $contentType)) {..} HTH! ~Paul On Saturday 30 November 2002 12:58 pm, Phil Powell wrote: > I am using this line: >

Re: [PHP] How to override header info in mail()

2002-11-30 Thread Paul Nicholson
header information - headers already sent by (output > started at /users/ppowell/web/recommend.php:13) in > /users/ppowell/web/recommend.php on line 104 > > > Phil > - Original Message - > From: "Paul Nicholson" <[EMAIL PROTECTED]> > To: "Phil Powe

[PHP] Re: Finding Mode

2002-12-08 Thread Paul Chvostek
roughly the same way the median() function works ... but I don't recommend using this for bandwidth calculations for co-lo customers because of the hassle of pulling all that data into an array. 95th percentile is more easily calculated in the SQL ser

[PHP] PHP Editor Browser View? (Beginner Question)

2002-12-11 Thread Paul Lazare
(without uploading it the provider again)? I allready tried to click on "new browser" and it is opening an empty browser... sorry for the beginner question. Am I in the right newgroup for this question? greetings, paul -- PHP General Mailing List (http://www.php.net/) To unsubscr

Re: [PHP] Nigerian oil scams

2002-12-12 Thread Paul Marinas
:) Paul Marinas Technical Support RDS Craiova Phone: +402-51-410-194 Mobile: +407-22-451-439 Fax:+402-51-416-579 www.rdsnet.ro . Privileged/Confidential Information may be contained in this message. If you are not the addressee

[PHP] Re: Regex question

2002-12-12 Thread Paul Chvostek
ould just be typed out > normally. How about: $href="(https?://([a-z0-9]+\.)+[a-z][a-z]+/[a-z0-9_./~%-]*)"; $repl="\\1"; $line=eregi_replace($href, $repl, $line); You can of course make $href less restrictive if you're liberal minde

[PHP] Re: fwrite and line breaks

2002-12-12 Thread Paul Chvostek
our $target somewhere (maybe by parsing HTTP_USER_AGENT), and you can stick with consistent use of UNIX-style text in your PHP. There's probably a more elegant way to do this, but I don't know it. -- Paul Chvostek <[EMAIL PROTECTED]&

[PHP] Re: Beginner question : Removing spaces in forms

2002-12-12 Thread Paul Chvostek
ers will hit their space bar a number of times after entering a numeric value into a text box? If so, then http://www.php.net/trim may be what you want. If not, you'll need to explain it more concisely. -- Paul Chvostek <[EMAIL PROTECTED]&g

[PHP] Re: ping...

2002-12-13 Thread Paul Chvostek
"man ping" from a shell to see what you need to do to duplicate this functionality, or check out various OS man pages at http://www.freebsd.org/docs.html#man . If you're running a Microsoft operating system, you're most likely out of luck. -- Paul Chvostek

[PHP] Newer version of PHP causing code incompatibilities

2002-12-13 Thread Paul Keenan
All of our pages which were previously running on a PSA 2.5 server which were done in php used the syntax . In PSA 5 (or the different install of PHP) you must use the proper syntax. We are now on PHP Version 4.1.2 Our server crashed and we have installed newer software, now most of the PHP does

Re: Re[2]: [PHP] File Upload

2002-12-14 Thread Paul Roberts
AX_FILE_SIZE is advisory to the browser. It is easy to circumvent this maximum. So don't count on it that the browser obeys your wish! The PHP-settings for maximum-size, however, cannot be fooled. " Paul Roberts [EMAIL PROTECTED] - Original Message - F

Re: [PHP] File Upload

2002-12-14 Thread Paul Roberts
what version of php are you using? - Original Message - From: "Miro Kralovic" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, December 14, 2002 3:52 AM Subject: RE: [PHP] File Upload Thanks Tom, but still no luck.. it seems like it doesn't recognize $testfile variable at all

[PHP] creating random strings?

2002-12-19 Thread Paul Chvostek
y thoughts? Incidentally, I'm guaranteeing uniqueness of usernames with a unique index in the MySQL table that stores this stuff. Including the INSERT, I can create about 10 of these in 60 seconds. So this is more a question of style than of practical limitations. ;)

[PHP] session life

2002-12-21 Thread Paul Roberts
o still be available if the user returns during the cookies life and is this on a per session basis. Paul Roberts [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Problem with comma in mail form

2002-12-26 Thread Paul Roberts
what mailserver are you using and how is it called in php.ini? and what else is in the message causing the problem. Best Wishes & Happy New Year Paul Roberts [EMAIL PROTECTED] - Original Message - From: "Ben Edwards" <[EMAIL PROTECTED]> To:

Re: [PHP] e-mail

2002-12-26 Thread Paul Roberts
try this mail($form['recipient'], $form['sublect'],$mailbody, "From:Web User <[EMAIL PROTECTED]'>"); Best Wishes & Happy New Year Paul Roberts [EMAIL PROTECTED] - Original Message - From: "Anil Garg" <

RE: [PHP] Nested Arrays

2002-12-26 Thread Paul Reed
]['make']="Ford"; $cars[0]['model']="Mustang"; $cars[1]['make']="Mazda"; $cars[1]['model']="RX7"; Although using an object/class would be better suited for the second example Hope this help .. Paul. -Origina

[PHP] [PHP-WIN] ftp_rawlist working as Admin and not working as normal user

2002-12-27 Thread Paul Menard
All, Seasons greeting to all. I'm running PHP version C:\>php-cgi.exe -v PHP 4.3.0RC2 (cgi-fcgi), Copyright (c) 1997-2002 The PHP Group Zend Engine v1.4.0, Copyright (c) 1998-2002 Zend Technologies under windows 2000 server for production and windows 2000 prof for development. I am using IIS 5 a

RE: [PHP] object vs functions

2002-12-28 Thread Paul Reed
bout them sooner! Hope this helps, (And I hope it makes sense, as I'm writing at 4:05am!) Paul Reed. -Original Message- From: Mat Harris [mailto:[EMAIL PROTECTED]] Sent: Friday, December 27, 2002 21:18 To: [EMAIL PROTECTED] Subject: [PHP] object vs functions if i have a php script

Re: [PHP] Populating a list box from a database - The code

2002-12-28 Thread Paul Chvostek
uot;; >} >if (!mysql_select_db("catapult_com")){ > Print "Couldn't connect database"; > } else { > Print ""."\n"; > } > > $sql="SELECT OrgName From TableResults ORDER BY OrgName"; > $result=mysql_query($sql);

Re: [PHP] Multi-lingual Language Support in PHP

2002-12-30 Thread Paul Roberts
there's a nice article in this months (Feb. 2003!!!) PC world (UK) (www.pcw.co.uk) on this. see www.nigelwhitfield.com for details. Best Wishes & Happy New Year Paul Roberts [EMAIL PROTECTED] - Original Message - From: "Michael J. Pawlowsky"

[PHP] error when conecting to mysql

2003-01-01 Thread Paul Roberts
problem on the server (shared, I'm on a virtual host, Cobalt raq, apache ) any pointers to what might could cause the error. Best Wishes & Happy New Year Paul Roberts [EMAIL PROTECTED]

Re: [PHP] mktime() and the format of the day number entry

2003-01-02 Thread Paul Roberts
same here win 2K apache php4.21 output 0,0,0,10,0,1998 => 90711 0,0,0,10,00,1998 => 90711 0,0,0,10,1,1998 => 907196400 0,0,0,10,01,1998 => 907196400 0,0,0,10,2,1998 => 907282800 0,0,0,10,02,1998 => 907282800 0,0,0,10,3,1998 => 907369200 0,0,0,10,03,1998 => 907369200 0,0,0,10,4,1998 => 907

Re: [PHP] Mass-mailing method

2003-01-03 Thread Paul Roberts
some times more than 100 bcc's are treated spam and dropped by the server, try it with a limit in the query. Best Wishes & Happy New Year Paul Roberts [EMAIL PROTECTED] - Original Message - From: "Cesar Aracena" <[EMAIL PROTECTED]> To:

[PHP] php $query help

2003-01-06 Thread - \[ Paul Ferrie \] -
Here is my problem I have created a user login system (flash+php+mysql) And it just about works Here's the prob when i go to register as a new user the code wont properly check to see if the username already exsist's in the DB, I am pretty sure the problem lies in my first $query PHP:-

[PHP] time stamp screwing up

2003-01-06 Thread - \[ Paul Ferrie \] -
hey guys could someone help me I have created a user login register system in flash with PHP and Mysql. Everthing Now works fine aprt from the time stamp of when the user registered. Code --- // Get current date & time $time = time(); // Connects to the Database. $

Re: [PHP] time stamp screwing up

2003-01-06 Thread - \[ Paul Ferrie \] -
nope it still comes up with all the zero's :( "Stephan Seidt" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > What sort of mysql field type did you use for dateAdded ? > You need UNIX_TIMESTAMP (or sth like that) for unix ti

  1   2   3   4   5   6   7   8   9   10   >