[PHP-DB] Re: Parse error

2003-03-21 Thread Michiel van Heusden
it might be a previous include() or require() or other command inserting
external PHP-code
is causing your problem..
but posting some code would help indeed..

grace
michiel



"[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>
> I am having a problem with a parse error.
>
> error:
> Parse error: parse error, unexpected ')' in
> /Users/timbest/Sites/cajunmikes/inc/menupage.php on line 75
>
> Fatal error: Cannot instantiate non-existent class: menu in
> /Users/timbest/Sites/cajunmikes/TMPfj18cc2i20.php on line 7
>
> The issue I am having is line 75 has no ')'.  I am sure this error is
> causing the next fatal error.  Anyone seen this before?  I'm not sure what
> to do next since there is nothing on line 75...
>
> Thanks
> /T
>



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP-DB] Re: deleting records using a checkbox

2003-03-21 Thread Ford, Mike [LSS]
> -Original Message-
> From: Paul Burney [mailto:[EMAIL PROTECTED]
> Sent: 20 March 2003 15:22
> 
> on 3/20/03 1:45 AM, olinux at [EMAIL PROTECTED] appended the 
> following bits to
> my mbox:
> 
> > [ and ] are illegal characters. #javascript
> 
> I'm coming into this a bit late, so I'm not sure exactly what 
> you wish to
> do.
> 
> You can use JavaScript to refer to checkbox items in the format:
> 
> document.forms[formindex].elements[elementindex].property

You can also use the form and element names in the brackets, so:

  document.forms["formname"].elements["elementname"].property

This is more human-friendly, and doesn't require you to change the index
number if you add or remove elements (or forms!).

However, if you prefer, you don't even need the ".forms" or ".elements"
parts.  Since, in JavaScript, *by definition*

  x.y === x["y"]

if you have a form element defined as:

  

  

   

you can refer to this as

   document.example.delete

or

   document.example["delete"]

or

   document["example"].delete

or

   document["example"]["delete"]

And, of course, an obvious extension of this is that if the input element on
your form is:

  

you can refer to this as:

   document.example["delete[]"]

This is just a basic recipe -- add your own ingredients, and mix and cook to
suit!

Cheers!

Mike

-
Mike Ford,  Electronic Information Services Adviser,
Learning Support Services, Learning & Information Services,
JG125, James Graham Building, Leeds Metropolitan University,
Beckett Park, LEEDS,  LS6 3QS,  United Kingdom
Email: [EMAIL PROTECTED]
Tel: +44 113 283 2600 extn 4730  Fax:  +44 113 283 3211 

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] Printing anchor link in results

2003-03-21 Thread Achieve IT
Hello,
I am new to PHP and am wondering how to print a variable an external link.
In the example below, the 'web_pro' variable has the format,
www.mycompany.com . How can I make this a clickable link?

echo "\n\n\t" .
   "Web: " .
   $arr['web_pro'] .
   "
   " .
  "
   \n";

Thanks,
Declan.


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP-DB] Printing anchor link in results

2003-03-21 Thread Hutchins, Richard
It's basic HTML:

> echo "\n\n\t" .
"Web: ". //changed this
line
>$arr['web_pro'].
" //changed this line
>" .
>   "
>\n";

Hope that's what you were looking for.

Rich

> -Original Message-
> From: Achieve IT [mailto:[EMAIL PROTECTED]
> Sent: Friday, March 21, 2003 8:11 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP-DB] Printing anchor link in results
> 
> 
> Hello,
> I am new to PHP and am wondering how to print a variable an 
> external link.
> In the example below, the 'web_pro' variable has the format,
> www.mycompany.com . How can I make this a clickable link?
> 
> echo "\n\n\t" .
>"Web: " .
>$arr['web_pro'] .
>"
>" .
>   "
>\n";
> 
> Thanks,
> Declan.
> 
> 
> -- 
> PHP Database Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Printing anchor link in results

2003-03-21 Thread Martin Hudec
hello :),

as far as I understand your problem that you just want to make a href 
reference to that site, just use something like:

   "Web: " .
$arr['web_pro'] .
"
where $arr['XXX'] is in example http://www.web.com

-- 
Martin Hudec
--
:@: [EMAIL PROTECTED]
:w: http://www.corwin.sk
:m: +421.907.303.393

"In google non est, ergo non est."
- unknown IRC operator
--

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP-DB] problem connecting w/ODBC

2003-03-21 Thread Beverly Steiner
Problem fixed!

Thank you to David who pointed out that I had my variables switched in the
in the odbc_exec and odbc_cursor lines.  For ODBC, the connection variable
comes first (the opposite of MySQL).

Bev

--
Beverly Steiner
[EMAIL PROTECTED]


-Original Message-
From: Beverly Steiner [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 18, 2003 1:58 PM
To: PHPDB
Subject: FW: [PHP-DB] problem connecting w/ODBC


Hello again,

Does anyone have suggestions about where I can get an answer to the problems
I'm having with ODBC?  I've tried using:
$cursor = odbc_cursor($connection) || die("cannot create cursor");

and get a similar error:

Warning: odbc_cursor(): supplied resource is not a valid ODBC result
resource in c:\program files\apache group\apache\htdocs\test4.php on line 13
cannot create cursor

Any help would be greatly appreciated.  I've been trying unsuccessfully to
access to an MS Access database with PHP for weeks now.  Any ideas of where
I can get the answer?  I have posted to the PHP-INST and PHP-DB lists.

--
Beverly Steiner
[EMAIL PROTECTED]


-Original Message-
From: Beverly Steiner [mailto:[EMAIL PROTECTED]
Sent: Friday, March 14, 2003 7:13 PM
To: PHPDB
Subject: [PHP-DB] problem connecting w/ODBC


Hello,

I am having problems accessing a database through ODBC.  I first sent an
email describing my problems accessing an MS Access database through PHP.
Today I installed MySQL.  I have no problems accessing my test database with
the mysql commands.  I downloaded MySQL's ODBC driver.  I get the same error
message trying to access this database w/ODBC as I did with the MS Access
database.

I am running Windows XP Professional, PHP 4.3.1, and Apache 1.3.27.

Here's my PHP code:

$connection = odbc_connect("testmysql", "", "")  or die ("Couldn't connect
to the server.");

$sql = "SELECT * FROM member";

$result = odbc_exec($sql,$connection) or die ("Couldn't execute query");

I get the following error message in my browser:

Warning: odbc_exec(): supplied argument is not a valid ODBC-Link resource in
c:\program files\apache group\apache\htdocs\test4.php on line 17
Couldn't execute query

Anyone have any ideas of what I should do so I can access a database through
ODBC?

--
Beverly Steiner
[EMAIL PROTECTED]



--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] Password Authentication

2003-03-21 Thread trlists
I am trying to build password authentication into a database front end 
for a MySQL DB.  I find the php docs on this point quite confusing so I 
have a lot of questions.

I can use a one-way hash to do this if that's the best way, as I don't 
need to retrieve the password.  However if I could do so that has some 
small advantages.  So I am open to either symmetric or one-way 
approaches.

First off, there are multiple encryption methods out there -- PHP 
crypt() and the mcrypt functions, and MySQL encrypt(), for encryption; 
and the md5 etc. functions for hashing.  Is there any information on 
best practices here, particularly in using PHP's encryption vs MySQL's?

Second, the PHP docs on crypt are, to me, a mess.  Much of it suggests 
passing the password back in as the salt for crypt, but this appears to 
me to only be workable if DES is being used and the first two 
characters of the password are the DES salt value.  Since the actual 
encryption method is installation-dependent the code in the docs:

# You should pass the entire results of crypt() as the salt
# for comparing a password, to avoid problems when different
# hashing algorithms are used.  (As it says above, standard
# DES-based password hashing uses a 2-character salt, but
# MD5-based hashing uses 12.)

if (crypt($user_input,$password) == $password) {
   echo "Password verified!";
}

seems to me to be exactly wrong -- what it does is *create* problems 
with different hashing algorithms.  Using $password as the salt here 
only works for DES, for md5-based encryption it will fail as the first 
12 characters of the password are not the md5 salt (are they?).  What 
am I missing here?

Third, I am curious as to the repeated statements as to why one must 
use a different salt every time.  For example, here's a user comment on 
the crypt docs from the PHP web site:

The only only important consideration when generating a salt
is to make sure that all salts are unique--that way the same
password will be encrypted differently (i.e. the encrypted
passwords will look different) for different users.

One of the simplest ways to generate a unique salt is to use
some string that will be different every time the procedure
is called.  Here's a simple example:

$jumble = md5(time() . getmypid());
$salt = substr($jumble,0,$salt_length);

My question is, why would I do this?  If you are going to save the 
password you can't use a random salt without saving the salt along with 
the password so you can test it later.  And if you do that, the 
randomness loses its value -- if someone breaks in and finds the 
encrypted password, they also get the salt.  Again, am I missing 
something?  Is there some potential attack where the attacker can use 
the repeatability of the password encryption or hashing algorithm to 
their advantage even if they cannot break into the server to see the 
encrypted data?  If not, and they have to be able to break in to do the 
attack then, again, they can read the salt.

Thanks for any comments or input.

 --
 Tom Rawson




-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP-DB] Display results on html page

2003-03-21 Thread Michelle Whelan

John,
I don't think I'm understanding what you are saying.  Anyhow, I actually got the html 
to display.  
John & Mailing list, 
I am having a problem with my query working.  It was working, then I must have edited 
something in it.  I don't remember exactly what because it was very late at night.  
This is what I have for the code page:


  www.webaddress.com
  
  
  
  

Error: Could not connect to database.");
  exit;
}
/* Attempt to select our database */
if ([EMAIL PROTECTED]($dbName))
{
  print("Error: Could not find $dbName database.");
  exit;
} 
/*Build SQL query to insert havedirt information into table*/
$DirtType = $_POST["havedirtype"];
$Yards = $_POST["noyards"];
$Contact = $_POST["contactname"];
$Area = $_POST["areacode"];
$Prefix = $_POST["prefix"];
$Suffix = $_POST["suffix"];
$Zip = $_POST["zipcode"];
$D_Month = $_POST["date_month"];
$D_Day = $_POST["date_day"];
$D_Year = $_POST["date_year"];
$Email = $_POST["email"];
$Jcity = $_POST["jobcity"];
$XStreets = $_POST["xstreets"];
$query = "INSERT INTO $table (havedirtype, noyards, contactname, areacode, prefix, 
suffix, zipcode, date_month, date_day, date_year, email, jobcity, xstreets)  VALUES 
'$DirtType','$Yards','$Contact','$Area','$Prefix','$Suffix','$Zip','$D_Month','$D_Day','$D_Year','$Email','$Jcity','$XStreets'";
  
/* Execute query */
$result = mysql_query($query);
/* If there was a problem with the query... */
if (!$result || @mysql_num_rows($result) < 1)
{
print("Error: Could not insert listing into database.");
}
else
{
  print ("YOUR LISTING HAS BEEN SUBMITTED");
}
/*Close link to MySQL*/
mysql_close($link);
  }
  else
  {
print ("YOU MUST FIRST ENTER A LISTING");
  }
?>


And this is the source that comes back:


  www.webaddress.com
  
  
  
  

Error: Could not insert listing into database.




[PHP-DB] Help with this query

2003-03-21 Thread shaun
Hi,

I have the following tables in my database:

CREATE TABLE WMS_Allocations (
  Allocation_ID int(11)  DEFAULT '' NOT NULL auto_increment,
  Project_ID int(11)  DEFAULT '0' NOT NULL ,
  User_ID int(11)  DEFAULT '0' NOT NULL ,
  PRIMARY KEY (Allocation_ID),
);

CREATE TABLE WMS_Projects (
  Project_ID int(11)  DEFAULT '' NOT NULL auto_increment,
  Project_Name varchar(255),
  PRIMARY KEY (Project_ID)
);

CREATE TABLE WMS_User (
  User_ID int(11)  DEFAULT '' NOT NULL auto_increment,
  User_Username varchar(100)  DEFAULT '' NOT NULL ,
  User_Password varchar(100)  DEFAULT '' NOT NULL ,
  User_Name varchar(100)  DEFAULT '' NOT NULL ,
  User_Type int(11)  DEFAULT '0' NOT NULL ,
  PRIMARY KEY (User_ID),
  UNIQUE User_Username (User_Username)
);

How can i select users from WMS_User where no users have been allocated to a
particular project - seems a little tricky with MySQL?



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] Storing images and text retrieved from mysql-db, into a table

2003-03-21 Thread gert vonck
hello,

i'm not very good with php and mysql, so this can look like a silly easy 
question.

I have a mysql database named 'oh'. there are 20 tables under it.
Now, i want to store 1 image and some text (8 to be exact) in a table.
I want to have 1 table with 3 column, and the first two are divided into 8 
rows each.

1st column, 1st row, shows like this example : the boss :
2nd column, 1st row, shows   : mr.Van dooren
3rd column is for image)
what i should retrieve from my table is the actual name of the field (boss), 
the value of that field (mr.Van dooren) en one time an image.

How can i load them into such a table?

with this code, i can show 1 image. :os



	$sql = @mysql_query("SELECT picture_right FROM info_general") or die 
(mysql_error());
	while($a_row = mysql_fetch_array($sql))
	{
		$img_1= $a_row["picture_right"];
	}
	mysql_close();
?>
	



Can someone help me please?

Mvg,

Gert Vonck

_
MSN Search, for relevant search results! http://search.msn.be
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP-DB] Retrieve "the field name itself" instead of "the info of the field name"

2003-03-21 Thread gert vonck
hello everyone,

this is my code to retrieve info from my mysql db. This works perfect, but 
what i also want is a column before this column. In the first column, i want 
to see the field names from my table. So instead of selecting the info of 
the field names "uitbater","straatnaam",... , I want to get "uitbater" 
itself.

How can I do this?

$result = mysql_query("SELECT uitbater, straatnaam, postcode, gemeente, 
provincie, telefoon, fax, email FROM info_general") or die (mysql_error());
$num = mysql_numrows($result);

print"\n";

while ($get_info = mysql_fetch_row($result))
{
foreach ($get_info as $field)
print "\t$field\n";
}
print "\n";
mysql_close();


_



--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP-DB] Normalize ...relationships

2003-03-21 Thread Russell Griechen
a table 'hound'
 contains ownerID, breederID.
These both are to be normalized in a  separate table as in:
CREATE TABLE sportsmen (
sportsmenID bigint (10)notnull autoincrement,

Question: How? based on a sportsman can be a owner, breeder, hunter,
President,
Senator, Governor etc;
CREATE TABLE hound (
  houndID bigint(10) NOT NULL auto_increment,
  houndname varchar(60) ,
  studbookID tinyint (4) ,
  sireID bigint (10),
  damID bigint (10),
  dob varchar (20) ,
  dod varchar (20) ,
  colormarkID int (10) ,
  ownerID bigint (10) ,
  breederID bigint (10) ,
  kennelID bigint (10) ,
  litterID bigint (10) ,
  health varchar (255) ,
  PRIMARY KEY  (houndID),
  UNIQUE KEY (houndID),
  KEY hdid_2 (houndID,houndname)
) TYPE=MyISAM COMMENT='Hound Registry';


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Retrieve "the field name itself" instead of "the info of the field name"

2003-03-21 Thread Mark
Uwe mysql_fetch_array() to get a row into an associative array, or
use mysql_field_name()


--- gert vonck <[EMAIL PROTECTED]> wrote:
> hello everyone,
> 
> this is my code to retrieve info from my mysql db. This works
> perfect, but 
> what i also want is a column before this column. In the first
> column, i want 
> to see the field names from my table. So instead of selecting the
> info of 
> the field names "uitbater","straatnaam",... , I want to get
> "uitbater" 
> itself.
> 
> How can I do this?
> 
> 
> $result = mysql_query("SELECT uitbater, straatnaam, postcode,
> gemeente, 
> provincie, telefoon, fax, email FROM info_general") or die
> (mysql_error());
> $num = mysql_numrows($result);
> 
> print"\n";
> 
> 
>   while ($get_info = mysql_fetch_row($result))
>   {
> 
>   foreach ($get_info as $field)
>   print "\t$field\n";
> 
> 
>   }
> print "\n";
>   mysql_close();
> 
> 
> 
> 
> _
> 
> 
> 
> -- 
> PHP Database Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 


=
Mark Weinstock
[EMAIL PROTECTED]
***
You can't demand something as a "right" unless you are willing to fight to death to 
defend everyone else's right to the same thing.
***

__
Do you Yahoo!?
Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop!
http://platinum.yahoo.com

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] Re: Normalize ...relationships

2003-03-21 Thread l0t3k
Russell,
how about creating a mapping , or adding a "role" field to the sportsmen
table, where role is owner, etc. it all depends on whether a sportsman can
be multiple things (owner, hunter, etc) at the same time. if so you need a
mapping table.

for example
CREATE table sportsmen_role_map (
sportsmenID  bigint (10)notnull,
roleIDbigint (10) notnull,
   PRIMARY KEY  (sportmenID, roleID)
   )

create table sportsmen_roles (
roleIDbigint (10) notnull autoincrement,
roleName  varchar(50) notnull,
   PRIMARY KEY  (roleID)
)

l0t3k
"Russell Griechen" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> a table 'hound'
>  contains ownerID, breederID.
> These both are to be normalized in a  separate table as in:
> CREATE TABLE sportsmen (
> sportsmenID bigint (10)notnull autoincrement,
>
> Question: How? based on a sportsman can be a owner, breeder, hunter,
> President,
> Senator, Governor etc;
> CREATE TABLE hound (
>   houndID bigint(10) NOT NULL auto_increment,
>   houndname varchar(60) ,
>   studbookID tinyint (4) ,
>   sireID bigint (10),
>   damID bigint (10),
>   dob varchar (20) ,
>   dod varchar (20) ,
>   colormarkID int (10) ,
>   ownerID bigint (10) ,
>   breederID bigint (10) ,
>   kennelID bigint (10) ,
>   litterID bigint (10) ,
>   health varchar (255) ,
>   PRIMARY KEY  (houndID),
>   UNIQUE KEY (houndID),
>   KEY hdid_2 (houndID,houndname)
> ) TYPE=MyISAM COMMENT='Hound Registry';
>



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] Cross-Table

2003-03-21 Thread Blain
Does anyone have some experience with cross-tables?

Thanks for help

Blain


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] mail() function

2003-03-21 Thread Rick Dahl
I can't get it to work.  I get the echo to show up but never receive a email.


if($blankpostage) {
   $to = "Rick Dahl <[EMAIL PROTECTED]>";
   $subject = "Online B+P Request";
   $body = "Show ID = " . $id;
   mail($to, $subject, $body);
   echo "sadflkjaflkasdj";
}


What am I doing wrong?

Rick


Re: [PHP-DB] mail() function

2003-03-21 Thread Jason Wong
On Saturday 22 March 2003 16:38, Rick Dahl wrote:
> I can't get it to work.  I get the echo to show up but never receive a
> email.
>
>
> if($blankpostage) {
>$to = "Rick Dahl <[EMAIL PROTECTED]>";
>$subject = "Online B+P Request";
>$body = "Show ID = " . $id;
>mail($to, $subject, $body);
>echo "sadflkjaflkasdj";
> }

1) Check that php.ini is correctly configured

2) Check the php error log

3) Check your mailserver log

-- 
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
--
Search the list archives before you post
http://marc.theaimsgroup.com/?l=php-db
--
/*
You can learn many things from children.  How much patience you have,
for instance.
-- Franklin P. Jones
*/


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] mail() function

2003-03-21 Thread Rick Dahl
I think the fact that I don't have a mailserver would do it.  Unless the PHP
home edition 2 bundle has a mailserver, I don't have one.  Where can I get
one of those?  Can I get it for free?

Rick


- Original Message -
From: "Jason Wong" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, March 21, 2003 10:41 PM
Subject: Re: [PHP-DB] mail() function


> On Saturday 22 March 2003 16:38, Rick Dahl wrote:
> > I can't get it to work.  I get the echo to show up but never receive a
> > email.
> >
> >
> > if($blankpostage) {
> >$to = "Rick Dahl <[EMAIL PROTECTED]>";
> >$subject = "Online B+P Request";
> >$body = "Show ID = " . $id;
> >mail($to, $subject, $body);
> >echo "sadflkjaflkasdj";
> > }
>
> 1) Check that php.ini is correctly configured
>
> 2) Check the php error log
>
> 3) Check your mailserver log
>
> --
> Jason Wong -> Gremlins Associates -> www.gremlins.biz
> Open Source Software Systems Integrators
> * Web Design & Hosting * Internet & Intranet Applications Development *
> --
> Search the list archives before you post
> http://marc.theaimsgroup.com/?l=php-db
> --
> /*
> You can learn many things from children.  How much patience you have,
> for instance.
> -- Franklin P. Jones
> */
>
>
> --
> PHP Database Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] mail() function

2003-03-21 Thread Jason Wong
On Saturday 22 March 2003 16:53, Rick Dahl wrote:
> I think the fact that I don't have a mailserver would do it.  Unless the
> PHP home edition 2 bundle has a mailserver, I don't have one.  Where can I
> get one of those?  Can I get it for free?

I think having a mailserver would be a tremendous help in sending mail :)

If you're running on some Windows system you can try specifying the SMTP 
server provided by your ISP. Otherwise google is your friend.

If you're running some *nix system then they usually come with the ubiquitous 
sendmail.

-- 
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
--
Search the list archives before you post
http://marc.theaimsgroup.com/?l=php-db
--
/*
Let me put it this way: today is going to be a learning experience.
*/


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] Fwd: FW: Prayer Wheel

2003-03-21 Thread Mike Delorme







From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED],   
 [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED],  
  [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: Fwd: FW: Prayer Wheel
Date: Fri, 21 Mar 2003 23:40:51 EST




_
The new MSN 8: smart spam protection and 2 months FREE*  
http://join.msn.com/?page=features/junkmail
--- Begin Message ---







From: "Cronin,Raelene L." <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED],"Martinson,Brenda" 
<[EMAIL PROTECTED]>,"Collins,Catherine M." 
<[EMAIL PROTECTED]>,"Devanney,Darcey J." 
<[EMAIL PROTECTED]>,"Hunter,Debra J." 
<[EMAIL PROTECTED]>,"Cruser,Suzanne D." 
<[EMAIL PROTECTED]>,"Lawrence,Richard" 
<[EMAIL PROTECTED]>,"Annelli,Elaine" 
<[EMAIL PROTECTED]>,"Kempton,Elizabeth" 
<[EMAIL PROTECTED]>,[EMAIL PROTECTED],"Hickey,Kathleen E." 
<[EMAIL PROTECTED]>,"Rice,Mary B." 
<[EMAIL PROTECTED]>,[EMAIL PROTECTED],"Alexander,Maureen A." 
<[EMAIL PROTECTED]>,"Eckels,Maureen M." 
<[EMAIL PROTECTED]>,[EMAIL PROTECTED],"Paradis,Paul E." 
<[EMAIL PROTECTED]>,[EMAIL PROTECTED],"Ireland,Stella" 
<[EMAIL PROTECTED]>,"Grassman,Susan Louise" 
<[EMAIL PROTECTED]>,"Frazier, Brenda" 
<[EMAIL PROTECTED]>,[EMAIL PROTECTED],"Christine Gill" 
<[EMAIL PROTECTED]>,[EMAIL PROTECTED],"Kristin Leigh" 
<[EMAIL PROTECTED]>,[EMAIL PROTECTED]
Subject: FW: Prayer Wheel
Date: Thu, 20 Mar 2003 10:59:22 -0500









Please send this on after a short prayer.
Prayer wheel for our soldiers...please don't break it
  Prayer Wheel "Lord, hold our troops in your loving hands.
  Protect them as they protect us. Bless them
  and their families for the selfless acts they
  perform for us in our time of need. I ask this
  in the name of Jesus, our Lord and Savior.
  Amen."
  Prayer Wheel:
  When you receive this, please stop for a moment
  and say a prayer for our ground troops being deployed.
  There is nothing attached This can be very
  powerful Just send this to all the people in
  your address book. Do not stop the wheel, please
  Of all the gifts you could give a US Soldier,
  Prayer is the very best one.




_
The new MSN 8: advanced junk mail protection and 2 months FREE*  
http://join.msn.com/?page=features/junkmail



--- End Message ---
-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php