[PHP] If statement w/ multiple conditions

2002-11-26 Thread ed
u use if ($lineone && $linetwo && $linethree && $linefour = "") Thanks, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] If statement w/ multiple conditions

2002-11-26 Thread ed
All four must be an empty string. I will be pulling the values from a MySQL database. If these fields are empty I'll be prompting for information. If any one of them contain anything I'll be showing it to the user and asking if they want to change it. Thanks, Ed On Tue, 26 Nov 2002

Re: [PHP] If statement w/ multiple conditions

2002-11-26 Thread ed
The db will include these 4 rows even though they don't store data. Eventually they will contain data for contact info as soon as the users log in and it prompts them for it. On Tue, 26 Nov 2002, DL Neil wrote: > Ed, > Assuming there will be a response from the db-tbl, here is ano

Re: [PHP] Re: If statement w/ multiple conditions

2002-11-26 Thread ed
That's what I was looking to acheive. Thanks! Ed On Tue, 26 Nov 2002, Craig wrote: > Something like this will work... > > > if(empty($_GET['1']) && empty($_GET['2']) && empty($_GET['3']) && > empty($_GET[&#x

Re: Re[2]: [PHP] How to handle "so called" expired sessions??

2002-12-03 Thread ed
up is done within php itself so nothing is cleaned up until php is called again. Is this correct? If so, I have sessions located within my /tmp directory that are over 3 weeks old and have been there ever since they were first created. Ed On Wed, 4 Dec 2002, Tom Rogers wrote: > Hi, > > We

[PHP] Output of MySQl sorted query to text or Word file.

2002-12-06 Thread ed
ay($result)); mysql_close(); } ?> Thanks in advance for any ideas Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Output of MySQl sorted query to text or Word file.

2002-12-06 Thread ed
eate real linefeeds or new lines when viewing under windows? TIA, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Output of MySQl sorted query to text or Word file.

2002-12-06 Thread ed
success. And I have read through the user contributed notes and havent' found it there. Ed On Fri, 6 Dec 2002, 1LT John W. Holmes wrote: > > What do I need to use to create real linefeeds or new lines when viewing > > under windows? > [snip] > > $newline = "

[PHP] Dynamic vs. Static

2002-12-09 Thread ed
When you compile php for apache using the dynamic module example used in the documentation, do you not get an exacutable php to use from the command line? Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Dynamic vs. Static

2002-12-09 Thread ed
Can I do that using the same src I used to create the dynamic module and both would work hapilly together? Thanks, Ed On Mon, 9 Dec 2002, John Nichel wrote: > No. To get the binary executable, compile it without the apache switch. > > [EMAIL PROTECTED] wrote: > > When you

Re: [PHP] Dynamic vs. Static

2002-12-09 Thread ed
Thanks to all that replied. Ed On Mon, 9 Dec 2002, John Nichel wrote: > Yes you can. Just use clean source, but the config line can be the same > less the "--with-apache" switch. > > [EMAIL PROTECTED] wrote: > > Can I do that using the same src I used to c

Re: [PHP] How to force an image to reload

2002-12-10 Thread ed
As one who has had to do the same thing and had gotten some help from this list I'll put in my two cents. the past > header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // always > modified > header("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1 > header("Cache

RE: [PHP] How to force an image to reload

2002-12-10 Thread ed
Even though I did forget the ending > on the tag. Cool. Ed On Tue, 10 Dec 2002, Adam White wrote: > Many thanks Ed, works a treat! > > Regards > Adam White > > Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: 10 December

Re: [PHP] take text before '-' and after it

2002-12-12 Thread ed
Wouldn't it be simpler to just remove the '-'? $var = str_replace("-","",$var); Ed On Thu, 12 Dec 2002, Antti wrote: > How can I take some text before the mark - and after it and put them for > example in array. The purpose of this is to read tro

Re: [PHP] Need to place a comma into a string of 4 or 5 digits

2002-12-12 Thread ed
IF you're looking to break digits into thousands by use of a comma search the manual for number_format. Ed On Thu, 12 Dec 2002 [EMAIL PROTECTED] wrote: > Hello All! > > I am racking my brain and scouring the books and I can't seem to find a solution > to this simple

RE: [PHP] Disable session cookies

2002-12-21 Thread ed
I'm guessing then that it's possible to use only server side sessions and use trans_id then if you need to store values throughout a site? Ed On Fri, 20 Dec 2002, John W. Holmes wrote: > > Is there any way to disable using cookies in sessions? I haven't found > a &

[PHP] Session Question

2003-01-03 Thread ed
Does php use cookies for sessions even if you don't explicitly use cookie functions to save session data server side? TIA, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Session Question

2003-01-03 Thread ed
lient side cookie with any values to retrieve the information. Thanks again, Ed On Fri, 3 Jan 2003, Ford, Mike [LSS] wrote: > -Original Message- > From: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > > Does php use cookies for sessions even if you don&

[PHP] Case Matching

2003-01-06 Thread ed
their username in all lower case letters. TIA, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] anyway to do a 'whos online' from session variable?

2003-01-07 Thread ed
u force garbage collection? I've written an application using sessions for storage and there's been a session sitting in my /tmp directory for 2 days now, well over the 1440 seconds expiration. Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] imageCreate() error

2003-01-16 Thread Ed
I'm running PHP 4.3 and W2k with IIS 5.0. I have enabled php_gd and it does show up when I do a phpinfo. The php_gd.dll is in the winnt/system32 directory (I've also tried it in almost every other directory too) and I get these error messages: Cannot add header information - headers already sent

[PHP] PHP and PDF Forms

2003-01-16 Thread ed
s yuse the data from the form and continue on with my script. How do I go about that? TIA, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP and FDF

2003-01-20 Thread ed
that was called. If I write in a header("Location") command and route the client to another page their browser opens a file locally on their computer that contains the source code of the page called. How do I just get the results of the form? TIA, Ed -- PHP General Mailing List (htt

Re: [PHP] Cannot show reuploaded image file on page unless manualrefresh

2003-01-20 Thread ed
than likely not have the image file identified by the random number it must request it again from the server. Works great where I need it! Ed On Mon, 20 Jan 2003, Chris Shiflett wrote: > --- Phil Powell <[EMAIL PROTECTED]> wrote: > > I am using the following header() functions to f

Re: [PHP] + in filenames

2003-01-31 Thread ed
On Fri, 31 Jan 2003, Marek Kilimajer wrote: > I use this: > $name=strtr( $name, > " ?*#$%^:+=<>/\"", > "__"); > I'm hoping that double quote was a typo?? Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] + in filenames

2003-02-03 Thread ed
I'll be the first to admit I was wrong and missed that. This will work out great for me. I'm writting scripts for Realtors to upload photos to us via the web and you can only imagine what these people will include in a filename. Ed On Mon, 3 Feb 2003, Marek Kilimajer wrote: >

Re: [PHP] authentication

2003-02-03 Thread ed
ser and pass it that way though. Ed On Mon, 3 Feb 2003, Chris Winters wrote: > Chris, > > Exactly. I am relying on the webserver to provide the restrictions. > > Now my next question: > what functions should I utilize or come close to to do it? There isnt any > PHP pages d

Re: [PHP] authentication

2003-02-03 Thread ed
I'm sorry the line should have been... header("Location:http://$PHP_AUTH_USER:$[EMAIL PROTECTED]";); Ed On Mon, 3 Feb 2003 [EMAIL PROTECTED] wrote: > > There is a way to supposedly do this by authenticating a username and > password through php first through

Re: [PHP] authentication

2003-02-04 Thread ed
nvestigate any further because I was rushed off to the next "Big Project." Ed On Mon, 3 Feb 2003, Chris Shiflett wrote: > > There is a way to supposedly do this by authenticating > > a username and password through php first through such > > methods as database loo

[PHP] Date format from file

2003-02-05 Thread ed
Is it possible to read a string from a text file (i.e. 0502031130) and be able to use that in a date function such as: $date = date("dmyHi", strtotime('+28 days)); How would I use that string as the date in the above code? TIA, Ed -- PHP General Mailing List (http://w

RE: [PHP] Date format from file

2003-02-05 Thread ed
a specific day of the month. If there is any other scheduling system out there that can do this type of thing on Linux/Unix I'd much rather use it than doing it this way. Ed On Wed, 5 Feb 2003, John W. Holmes wrote: > > Is it possible to read a string from a text file (i.e. > >

RE: [PHP] Date format from file (END)

2003-02-05 Thread ed
cess gets run on the exact time it needs to be run along with the exact date in the file. Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Running system commands

2003-02-25 Thread ed
orm passed to the script and is assigned from $_POST['path']; When I run it no directory is created. Ideas?? Thanks, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Making a true statement false.

2003-03-07 Thread ed
ssume false then true? Thanks, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Making a true statement false.

2003-03-07 Thread ed
Thanks for all the help. I was just placing the ! in the wrong place. Thanks again, Ed On Fri, 7 Mar 2003, Greg Beaver wrote: > > > Mincu Alexandru wrote: > > On Fri, 2003-03-07 at 18:16, [EMAIL PROTECTED] wrote: > > > >>Whenever I query a database

Re: [PHP] Basic Auth question

2003-07-01 Thread ed
he closest thing you can do is create a .htaccess type pop up with PHP but the username and password still have to be entered via the user which is what I take to be what you are trying to avoid. Ed Curtis On Tue, 1 Jul 2003, Dave Carrera wrote: > I have a issue with basic auth which I hope som

[PHP] PHP and Mysql Limit

2003-07-02 Thread ed
it should be as there should be no more listings to output to a text file but why is there a page number 18 to begin with? It should end with page number 17. Thanks in advance for any insight, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP and Mysql Limit

2003-07-02 Thread ed
Yes, the next page of results would start at #18. The page number only increments by 1. Ed On Wed, 2 Jul 2003, Chris Sherwood wrote: > It looks like your adding 10 to 8 thus getting 18... of course I maybe > looking at this wrong > > - Original Message - > From: &l

Re: [PHP] PHP and Mysql Limit

2003-07-02 Thread ed
r of records resulting in 10 records per page. It may contain something like 1027 records which should then produce 103 pages. 102 pages each with 10 records and one page of only 7 records. Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Red Hat 9, Apache 2, and PHP

2003-07-03 Thread ed
nning that for the past 4 years on that dinosaur. Ed On Thu, 3 Jul 2003, Joseph Szobody wrote: > Folks, > > I'm just getting ready to built a webserver this weekend and was planning on using > RH9, so this thread especially caught my eye. The website that the server will b

Re: [PHP] Re: Red Hat 9, Apache 2, and PHP

2003-07-03 Thread ed
ed because of this. Ed On Thu, 3 Jul 2003, Mark McCulligh wrote: > I am also building a new server. I am going with RedHat 8, but only > installing the Classic server from the CDs. Then installing/configuring > Apache/PHP/MySQL/SSL manually. I like the rpm install programs but I like

[PHP] Older Version problems

2003-07-14 Thread ed
are all empty. Did I miss something in the ini file somewhere? I'd really hate to upgrade at this time as this came from a Red Hat 7.3 install and I'd hate to lose all the functions that are already pre-compiled into it (gd, mysql, etc) Thanks, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How can I display an image within a script?

2003-07-15 Thread ed
Yes, the method below would work just fine if you only needed to display one image. Trying it on a second image within the same generated page would give you a "headers already sent" error. Ed > Ok, assuming that the image files are outside the public web tree and > you can

[PHP] Error on mysql_num_rows

2003-03-20 Thread ed
Is there something I'm missing here? I've tried using just about every example in the on-line manual and get the same error. I can run other queries just fine though. Thanks, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Error on mysql_num_rows

2003-03-20 Thread ed
I think I've found my problem. The query does work if I place the exact same code directly into my script but I had previously been calling it as a function from an include file. It's working just great now. Thanks, Ed On Thu, 20 Mar 2003, Tom Rogers wrote: > Hi, > >

[PHP] PHP or Mysql or Combination

2003-03-24 Thread ed
e Creating Sorted Listing Report"; ------ How would I go about creating files of 8 records each in individual files? Thanks, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] strtr question

2003-05-29 Thread ed
though. How do I do this? TIA, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP and .htaccess

2003-06-11 Thread ed
to an .htaccess protected directory without having the server pop up another username/password box? Thanks, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP extensions and multiple source files?

2003-06-11 Thread Ed
Howdy folks! Is there a way to have multiple *.c source files and still end up with a single *.so while using gcc? How would that be reflected in the config.m4 file? I searched for examples in the source tree, but did not find one. I tried different things, but ended up with multiple *.so's.

[PHP] authorize.net

2002-08-01 Thread ed
emailing their tech support but haven't heard back from them. Does anyone know of any payment services that I can use for free just for testing my app with it? Can you suggest any php libraries out there that will make life easier? tia, --ed __ D

Re: [PHP] What the heck is this Zope?

2002-08-09 Thread ed
applications that are strictly for the web, is there anything as good as php? I would probably say no, but a lot of it is a matter of taste. hth, --ed - Original Message - From: Deependra B. Tandukar <[EMAIL PROTECTED]> Newsgroups: php.general To: PHP General <[EMAIL PROTECTED]

[PHP] funtion exporter; static inclusion of external scripts

2002-08-09 Thread ed
re people aren't caching their php scripts. Let me know if anything like this exists. tia, --ed __ Do You Yahoo!? HotJobs - Search Thousands of New Jobs http://www.hotjobs.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] addslashes() and stripslashes()

2002-08-14 Thread ed
Is it a good idea to always use addslashes() on a value gathered from a text field or textarea? If you use addslashes() to "INSERT" the stuff into a db, should you always use stripslashes() when you "SELECT" it from the database? tia, --ed _

[PHP] php/mysql slow with zone alarm

2002-09-03 Thread ed
not slow, just when used in conjunction with mysql. Also, when I use mysql from the command line it doesn't seem to be slow. I know this isn't necessarily a php issue, but thought maybe some of you may have run into a problem like this before and would know a remedy. An

[PHP] Variables and Forms

2002-09-24 Thread ed
27;ve also tried the meta http-equiv="window-target" content tag on the action page from the form and it didn't work either. TIA Ed Curtis -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] remote files to servers

2002-09-26 Thread ed
While were on the subject what about retreiving a web page and images based on URL? Ed Curtis On Fri, 27 Sep 2002, Simon Angell wrote: > Hi all. > i was wondering if it is possible to use PHP to retrieve a remote file and > then write a copy to my own server for quick

[PHP] Simple directory listing

2002-09-26 Thread ed
I've been hunting all over to find a script that will just list a directory. I don't need a full feature file system manager just something I can list files and choose to delete a file if I wish. Where would I find this. TIA, Ed -- PHP General Mailing List (http://www.ph

Re: [PHP] 4.0.2 => 4.2.3, form vars are empty?

2002-09-27 Thread ed
I recently have experienced the same thing in upgrading from 4.0.0 to 4.2.3 All variables are now stored globally and can only be retrieved using $_POST['var'] or $_GET['var'] declarations i.e. $username = $_POST['username']; or get if your method was get in the form. On Fri, 27 Sep 2002, Q

[PHP] Getting part of a string

2002-09-27 Thread ed
I've got a situation where I need to pull a string from a variable but I can't seem to get it figured out. I.e. value of $a = /realtor/Remax/Ed/files/ I need to get the string between the second and third / (slash) What I need: Remax Thanks, Ed -- PHP General Mailing

[PHP] coding standards - control structures

2002-09-27 Thread ed
utting the opening brace one line down on the same column that the control statement starts on seems to give me a much better visual cue, especially when dealing with nested control statements. Is doing it my preferred way acceptable? Will my code be looked down on? th

[PHP] Security and register globals

2002-09-30 Thread ed
time. Cookies are not an options as many users may have them turned off and sessions have never worked for me or at least I have never figured them out to work the way I think they should. TIA, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Security and register globals

2002-09-30 Thread ed
the tools without knowing what the ID is was my main focus. I did this using hidden input type variables so it's not included on the URL when they get there. I could continue to do so if I were using all based links but the value could still be seen in the source for the page. Ed On Mon, 3

RE: [PHP] Security and register globals

2002-09-30 Thread ed
enough done using a logout script but who actually does this anymore. It would be possible to create a script to run through cron to delete records from that table that are more than say 30 minutes old. Good idea, thanks. Ed > > If that's the way you have to do it, then make

RE: [PHP] Security and register globals

2002-09-30 Thread ed
I think I would rather do it using a new table than have to handle sessions. It actually sounds harder to do it this way but I like hard. :) Thanks, Ed On Mon, 30 Sep 2002, John W. Holmes wrote: > > It would be possible to do this if I then created another table to > load > >

[PHP] Session cleanup

2002-10-14 Thread ed
I was wondering why a session doesn't automatically get cleaned up after the maximum life time? Default to 1440 (24 min) session is still there until I start a new session then it disappears. Is there a simple script to run via cron to clean up old sessions? TIA, Ed -- PHP General Ma

Re: [PHP] extract($_POST)

2002-10-25 Thread ed
27;s not a sure-fire method, it can be included along with other security methods to increase the amount of security on a script. Ed Curtis On Fri, 25 Oct 2002, John Nichel wrote: > And if you want to take it a step further, to ensure that the values are > submitted from YOUR form, ch

[PHP] Checking for a string.

2002-10-29 Thread ed
tains "http"? Thanks, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Checking for a string.

2002-10-29 Thread ed
uot;this action"; } else { $action = "that action"; } Thanks much, Ed On Tue, 29 Oct 2002, John Nichel wrote: > preg_match() > > [EMAIL PROTECTED] wrote: > > I'm currently writting a redirect script for my site which will transfer > > someone to eithe

Re: [PHP] Checking for a string.

2002-10-29 Thread ed
Thanks, figured that out shortly after I posted. Ed On Tue, 29 Oct 2002, John Nichel wrote: > http://www.php.net/manual/en/function.preg-match.php > > Wrong syntax, and more code than needed. Your code would always resolve > true (if ($matches[0] = "http")). Doing

[PHP] PHP and .htaccess authentication

2002-10-30 Thread ed
previous authentication scheme as above? Thanks, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Mutiple header statements?

2002-10-30 Thread ed
Why doesn't this work? If I select "that" from the form submitting the value to "var" I get a header already sent error. There is nothing else above these statments in my script. Thanks, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] Mutiple header statements?

2002-10-30 Thread ed
On Wed, 30 Oct 2002, Rick Emery wrote: > > if ($_POST['var'] == "this") { > header("Location: scipt1.php"); exit;} > > if ($_POST['var'] == "that") { > header(Location: script2.php"); exit; } Nope, I still get a heade

RE: [PHP] Mutiple header statements?

2002-10-30 Thread ed
quot;that") > $page = "script2"; > > header("Location: $page.php"); } > ?> This could be an option if neither of the if's matched it could continue with additional scripting below these conditions without getting sent a header. Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Mutiple header statements?

2002-10-30 Thread ed
riable that makes the second condition true. It works just fine If I choose to make the first condition true or choose to make both conditions false. Thanks, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Mutiple header statements?

2002-10-30 Thread ed
and on from here Here's the error: Warning: Cannot add header information - headers already sent by (output started at script.php:4) in script.php on line 5 Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Mutiple header statements?

2002-10-30 Thread ed
On Wed, 30 Oct 2002, Marek Kilimajer wrote: > You have an empty line there, get rid of the > ?> > > pair That did it!! I didn't know a blank line inside php tags would be interpeted as output. Thanks! Ed -- PHP General Mailing List (http://www.php.net/) To unsu

RE: [PHP] Mutiple header statements?

2002-10-30 Thread ed
002, Marek Kilimajer wrote: > > > > > You have an empty line there, get rid of the > > > ?> > > > > > > > > pair > > > > That did it!! I didn't know a blank line inside php tags would be > > interpeted as output. >

[PHP] stipslashes

2002-10-31 Thread ed
Is stripslashes($_POST); the same as stripslashes($_POST['var1']); stripslashes($_POST['var2']); stripslashes($_POST['var3']); Thanks, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] number_format question

2002-10-31 Thread ed
is: number_format($number, ","); If I enter "123456.00" it comes out as "123". Did I miss something? Thanks, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] number_format question

2002-10-31 Thread ed
If I try that I get a wrong parameter count error. Ed On Thu, 31 Oct 2002, Jay Blanchard wrote: > [snip] > I using number_format where I need to turn a number say "123456789" into > "123,456,789" and it works just fine. I also need it to strip the decimal &g

RE: [PHP] number_format question

2002-10-31 Thread ed
,789.00 > 123,456,789 Ed On Thu, 31 Oct 2002, Jay Blanchard wrote: > [snip] > If I try that I get a wrong parameter count error. > > [/snip] > > number_format ( float number [, int decimals [, string dec_point [, string > thousands_sep]]]) > > number_form

Re: [PHP] Who can tell me where I can get the cracked Zend Encoder3.0?

2002-11-01 Thread ed
> Asking for something illegal is *wrong*. But just stealing it without asking is OK? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Authentication with PHP and HTTP

2002-11-05 Thread ed
. Warning: readfile("http://...@;www.mysite.com/") - Success in redirect.php on line 2 It's a warning but says Success? Ed On Mon, 4 Nov 2002, Chris Shiflett wrote: > You can "hide" URLs by fetching them with one of your own PHP scripts: > > > readfile("http://use

[PHP] What's up with php.net

2002-11-07 Thread ed
Seems the site is down? Just when I was needing to get to the documentation. Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] What's up with php.net

2002-11-07 Thread ed
st when I was needing to get to the > > documentation. > > > > Ed > > > > > > > > > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Outputting multiple images

2002-11-07 Thread ed
to load in the new photos? Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Outputting multiple images

2002-11-07 Thread ed
But I don't think headers would work because I would be using it on a page that has already had output before the images would and also multiple images which means multiple header statements. Ed On Thu, 7 Nov 2002, 1LT John W. Holmes wrote: > > I've found a little pr

Re: [PHP] Outputting multiple images

2002-11-07 Thread ed
I think the random number query will work but I have a problem with the context of the echo line. Here's how I get the image path. How would I use the rand function in the above statement? Ed > When you create the src tag in for the image, add a random number query > st

Re: [PHP] Outputting multiple images

2002-11-07 Thread ed
On Thu, 7 Nov 2002, Ernest E Vogelsinger wrote: > At 16:57 07.11.2002, [EMAIL PROTECTED] spoke out and said: > [snip] > > I think the random number query will work but I have a problem with the > >context of the echo line. > > > >Here's how I get the image

[PHP] php5 features?

2002-11-09 Thread ed
I'm just looking forward to seeing in what areas it is going to be made even better. tia, --ed __ Do you Yahoo!? U2 on LAUNCH - Exclusive greatest hits videos http://launch.yahoo.com/u2 -- PHP General Mailing List (http://www.php.net/) To uns

[PHP] php5 features?

2002-11-09 Thread ed
I'm just looking forward to seeing in what areas it is going to be made even better. tia, --ed __ Do you Yahoo!? U2 on LAUNCH - Exclusive greatest hits videos http://launch.yahoo.com/u2 -- PHP General Mailing List (http://www.php.net/) To uns

[PHP] PHP and MySQL sorting using COUNT

2002-11-13 Thread ed
of the array? I know the company_name would be $row['company_name'] and agent_name is $row['agent_name']; Thanks, Ed Curtis -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Auth with Apache

2002-11-14 Thread ed
to do this? Thanks, Ed On Wed, 13 Nov 2002, Ewout de Boer wrote: > in httpd.conf > > > AllowOverride AuthConfig > > > > More info at http://httpd.apache.org/docs/mod/core.html#allowoverride > > > regards, > > Ewout > > > -

Re: [PHP] PHP Auth with Apache

2002-11-14 Thread ed
quot;) method and it always prompts as well. Thanks, Ed On 14 Nov 2002, BigDog wrote: > Ed, > > When you do auth with mysql and they succeed then u can set the > $_SERVER['PHP_AUTH_USER'] and in theory that should allow you to connect > to the directory because that sh

[PHP] dns_get_record()

2006-11-08 Thread Ed
server? Any help appreciated. Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Acessing session vars

2003-08-15 Thread Ed Curtis
ead the file located in my /tmp directory. Now I click on a link and go to a different page and I do: session_start() Magazine: Company: Should I be able to retrieve the values in this fashion? I'm using php 4.1.2. Thanks, Ed -- PHP General Mailing List (http://www.php.net/) To

[PHP] Checking Client's Cipher Strength with IIS

2003-05-29 Thread Ed Gorski
ried using some server vars (namely HTTPS_KEYSIZE) but that reports incorrect data with the win2k/IE/56-bit configuration I mentioned above. Any help is appreciated and thanks in advance, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] php session not persisting

2003-06-03 Thread Ed Gorski
Do you have cookies enabled on your browser? If not then you will need to make sure that you compile or change your php.ini to reflect that (ie with trans-sid). ed -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 03, 2003 3:42 AM To: [EMAIL PROTECTED

RE: [PHP] problems?

2003-06-04 Thread Ed Gorski
Couple of clarifications Dale: Is this an internal intranet server? Can it be? Do you have admin rights to the server? What's OS and Server are you running? ~Ed -Original Message- From: Dale [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 03, 2003 1:21 PM To: [EMAIL PROTECTED] Su

RE: [PHP] Registered sessions.

2003-06-04 Thread Ed Gorski
to do this but on header redirects like the one above you do. Hope this helps, ed -Original Message- From: Angelo Zanetti [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 5:44 AM To: [EMAIL PROTECTED] Subject: [PHP] Registered sessions. Hi, I have a php page that validates if a

  1   2   3   4   5   6   7   >