RE: [PHP] Password encyption

2004-07-02 Thread Bob Eldred
Well that's a whole different thing, then. -Original Message- From: Anzak Wolf [mailto:[EMAIL PROTECTED] Sent: Friday, July 02, 2004 1:40 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: [PHP] Password encyption I do run my own server but I know for a fact that even if I hard

RE: [PHP] Password encyption

2004-07-02 Thread Bob Eldred
So host your own server. That way nobody but you has access to it. Then you could store the password wherever you want, unecrypted, and it wouldn't matter. If you're running an application that's that security conscious, you shouldn't be using a shared server anyway. -Original Message- F

RE: [PHP] Re: hellllppp my php kills the browser

2004-06-19 Thread Bob Eldred
However, those newbies who stick around will learn how to research and find most of the answers themselves. Not a bad result, if you ask me. Education often sounds "Holier than Thou", but there's usually a good reason for it. Bob -Original Message- From: Michael Lauzon [mailto:[EMAIL PR

Fw: [PHP] Parse Error

2004-02-18 Thread Bob Eldred
Since I replied only to Edwin. - Original Message - From: "Bob Eldred" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 18, 2004 10:40 PM Subject: Re: [PHP] Parse Error > Yes. Of course not. That wasn't the point. The point wa

Re: [PHP] Parse Error

2004-02-18 Thread Bob Eldred
- Original Message - From: "Jay Blanchard" <[EMAIL PROTECTED]> To: "Rolf van de Krol" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, February 17, 2004 9:06 AM Subject: RE: [PHP] Parse Error > > The error is: > Parse error: parse error, unexpected T_VARIABLE in > /www/htdocs/rolfv

Re: [PHP] Re: Algorithm....

2004-02-16 Thread Bob Eldred
one bit is marked as busy > if (TimeFrame <> 0) > { > mask = 0x8000; > while (mask & TimeFrame == 0) > mask = mask >> 1; > } > > Hope this helps (I think it saves both memory and time) > > Manu. > > > &

[PHP] Algorithm....

2004-02-16 Thread Bob Eldred
I'm working on a calendaring script right now, and am stuck on a programmatic way to figure something out. Basically, the work day is broken down into 15-minute intervals, where the value of a given interval can be figured as $hour=floor($i/4) and the minutes can be figured as $minutes=($i%4)*15.

[PHP] Image Header Issues - solved

2004-01-21 Thread Bob Eldred
For the archives, for when someone else runs into this. The following headers solved the issue where IE would only save an image as a BMP, when the image was, in fact, a JPG: header("Pragma: public"); header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); heade

Re: [PHP] Image Header Issues

2004-01-17 Thread Bob Eldred
d be happening, that would be great. Bob - Original Message - From: "Toby Irmer" <[EMAIL PROTECTED]> To: "Larry Brown" <[EMAIL PROTECTED]>; "Bob Eldred" <[EMAIL PROTECTED]>; "PHP List" <[EMAIL PROTECTED]> Sent: Saturday

Re: [PHP] Image Header Issues

2004-01-17 Thread Bob Eldred
t;[EMAIL PROTECTED]> To: "Bob Eldred" <[EMAIL PROTECTED]> Cc: "PHP Lists" <[EMAIL PROTECTED]> Sent: Saturday, January 17, 2004 7:28 AM Subject: Re: [PHP] Image Header Issues This is a known issue with IE. And it is in their knowledge base. If I recall the fix

Re: [PHP] Image Header Issues

2004-01-16 Thread Bob Eldred
Grr.that's *not* the problem. IE saves JPGs just fine, so long as they are not passed through this particular script. Which is why I think it has something to do with the headers. Bob - Original Message - From: "Arthur Pelkey" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PR

[PHP] Image Header Issues

2004-01-15 Thread Bob Eldred
Well, I've done a lot of web searching, and a lot of experimentation, but haven't hit upon a fix for my issue yet. Currently, images are served on a site I'm working on in two ways: 1) Free Images are served normally (). 2) Non-Free Images are served through a PHP wrapper with authentication func

Re: [PHP] Image Header Problems

2004-01-13 Thread Bob Eldred
- Original Message - > function showpix($picture_id) > { > $sql="SELECT ug.group_name, p.name from usenet_groups as ug, > pictures as p WHERE p.id='$picture_id' AND ug.id=p.group_id"; > $result=mysql_query($sql) or die(mysql_error()); > $row=mysql_fetch_ar

[PHP] Image Header Problems

2004-01-12 Thread Bob Eldred
Hi there, I'm wanting to serve images outside the docroot of apache, so that the images can't be so easily hijacked. However, I appear to be running into a problem with (I think) the headers not being sent properly. IE (v6) will only save the images as BMPs, not as JPGs, even though they are JPG

[PHP] OpenBSD 3.2 PHP 4.2.3 packages

2003-03-16 Thread Bob Eldred
I'm hopeful that someone here has been in my situation and found a fix for it. I recently installed a clean OpenBSD 3.2 system, and added the php4-core-4.2.3 and php4-gd-4.2.3 packages, along with a few other packages from the php4 collection. Most everything seems to be working fine. However, ph

Re: [PHP] plus sign has changed to space after POST

2002-11-19 Thread Bob Eldred
I don't believe it has anything to do with PHP, to be honest. I've got scripts that are several versions of PHP old that do that. However, it makes no difference in execution of the script. case "show roster": { ... } catches submit=show+roster quite nicely. Bob - Original Mes

Re: [PHP] Need MENTOR for Fantasy football project

2002-11-09 Thread Bob Eldred
So experiment. That's exactly how I made my fantasy league stuff work. Along with a few questions here when I had *specific* issues with code. Bob - Original Message - From: "Karl James" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, November 08, 2002 12:33 PM Subject: RE: [PH

[PHP] Newbie question

2002-01-09 Thread Bob Eldred
Hi there, I'm really really new to both PHP and MySQL, so this is probably going to turn out to be an easy fix. The basis is this: I have a MySQL database with two tables in it. I'm trying to update 1 of the fields (aqfl_team) in the first table (nfl_players) with a value from a field (aqfl_te