[PHP-DB] Complicated Question (maybe)?

2005-01-10 Thread JeRRy
Hi, I have my reasons in asking this. But instead of going on about it I'll make it quick. Is there a way to BLOCK an update to a column in a databasefrom a webform or php page? What I mean is this. A user registers for a site. They enter details like their address, username and etc. I want

[PHP-DB] Re: passing both an anchor and a variable

2004-11-14 Thread JeRRy
Date: Sun, 14 Nov 2004 19:47:10 +0100 From: Michelle Konzack [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: passing both an anchor and a variable Hello Perry, How do you append both an anchor and a variable to a URL with PHP? Try something like this:

[PHP-DB] RE: error

2004-09-28 Thread JeRRy
alot better/easier/faster. :) Otherwise we would have to test and find ourself. Which many of us don't have the time/patience for. Jerry - From: [EMAIL PROTECTED] Date: Tue, 28 Sep 2004 06:58:10 EDT To: [EMAIL PROTECTED] Subject: error Dear friends, Script writes

[PHP-DB] Re: Mass mail

2004-09-20 Thread JeRRy
Hi Nikos, There is a number of ways you can handle this. But I have found these days many web - hosts are limiting the number of emails a domain may send per hour. Many have set the limit to 500 emails per domain per hour ... Which means you can only send 500 emails per hour via the domain you

[PHP-DB] inserting same data into multiple tables question (?)

2004-04-30 Thread JeRRy
Hi, I want to input the same data into multiple tables in one query if possible. So what I want to do is input about 6 usernames I have into about 15 tables. How would I do this? In one query? I really don't want to run multiple queries over 15 times to put in the data in each table.

[PHP-DB] Re: Page cannot be displayed problems

2004-04-29 Thread JeRRy
Date: Thu, 29 Apr 2004 01:11:35 -0500 From: matthew perry [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Page cannot be displayed problems My bosses computer gets a Page cannot be displayed message when she uses some of my pages. I have tried to find a pattern as to why this happens on

[PHP-DB] Re: Session

2004-04-27 Thread JeRRy
Hi, Regarding the recent thread on sessions. If you want cookies to expire after the user leaves the sie or closes the browser do not leave the expiry date emty. 9 times out of 10 the cookie will remain. All you need to do is set a date that has passed. Like 1st Jan 2000. Most set it way

[PHP-DB] Link to do query

2004-04-15 Thread JeRRy
Hi, I have a Tipster Website that lists a Tipster Ladder. So it shows their name and their current score. What I want to do is make their name clickable and upon clicking the name it loads that persons profile which is fetched from the mysql db. Now which would be the best way to do this? I

[PHP-DB] Query Help!

2004-04-08 Thread JeRRy
Hi Everyone, Happy Easter to you all. I have this query, reasoning for posting on this Mailing List is under it. :) SELECT `username` , `score` FROM round . $round_number . WHERE 1 ORDER BY `score` DESC LIMIT 0, 30 Is there a way to make it output the $round_number -1 (minus one number)? I

[PHP-DB] Re: Query Help!

2004-04-08 Thread JeRRy
Date: 8 Apr 2004 09:12:46 - To: [EMAIL PROTECTED] From: David Robley [EMAIL PROTECTED] Subject: Re: Query Help! [EMAIL PROTECTED] (Jerry) wrote in news:[EMAIL PROTECTED]: Hi Everyone, Happy Easter to you all. I have this query, reasoning for posting on this Mailing List is under

[PHP-DB] Re: Query Help!

2004-04-08 Thread JeRRy
Date: 8 Apr 2004 09:12:46 - To: [EMAIL PROTECTED] From: David Robley [EMAIL PROTECTED] Subject: Re: Query Help! Have you tried SELECT `username` , `score` FROM round . ($round_number -1) . WHERE 1 ORDER BY `score` DESC LIMIT 0, 30 Ahh just tried it and relised what is going on

[PHP-DB] blank page output on some servers and other servers is fine!

2004-04-01 Thread JeRRy
script fails? Jerry Script below: ? $usr = USR; $pwd = PASS; $db = DB_NAME; $host = localhost; $cid = mysql_connect($host,$usr,$pwd); mysql_select_db($db); global $IP_RegExp_Match, $Host_RegExp_Match, $Email_RegExp_Match

[PHP-DB] If statement or something else?

2004-03-31 Thread JeRRy
Hi, Okay here is a sniplet of some code... snip ?php mysql_connect (localhost, tassie_jerry, s2390lpTAS225); mysql_select_db (tassie_tipping); $qr = mysql_query(SELECT IF ( misc = ( 'y' ) , 'Form Action=tipupdate.php METHOD=POST enctype=multipart/form-data', 'Form Action=tip1.php METHOD=POST

[PHP-DB] Re: If statement or something else?

2004-03-31 Thread JeRRy
With the if statement I thought the second ' ' 's meant like the else statement so if statement did not match it would output the second text? So if direction was the field and you had left and right. left = your left handed right = your right handed. so 'your left handed' , 'your right

[PHP-DB] php, mysql security question

2004-03-31 Thread JeRRy
Hi, I have a php, mysql security question. You know how there is a way to enable/disable hot linking to your images via CPanel to allow/disallow people to link to your images from an external site? Well is there a way to allow/disable external sites connecting to a mysql via PHP? So is

Re: [Fwd: Re: [PHP-DB] php, mysql security question]

2004-03-31 Thread JeRRy
on that keyword. I apologize for the double post and possible confusion. \Doug JeRRy wrote: Hi, I have a php, mysql security question. You know how there is a way to enable/disable hot linking to your images via CPanel to allow/disallow people to link to your images from an external

[PHP-DB] Re: INSERT problem--Need help urgently

2004-03-30 Thread JeRRy
Date: Tue, 30 Mar 2004 15:13:35 +0800 From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: INSERT problem--Need help urgently Hi all: I was having some problem with INSERT query here and do hope to get some help real soon. I have a form whereby once the form is submitted, the values

[PHP-DB] List Question!

2004-03-28 Thread JeRRy
Hi, Just a list question here. Not sure if this question is answered online anywhere but thought I'd post here. - If a user is NOT subscribed to this Mailing List can they still post by emailing [EMAIL PROTECTED] ? I have never emailed [EMAIL PROTECTED] without subscribing before. - If no and

[PHP-DB] Re: Testing - no emails since 11:45 AM 3/23/04

2004-03-24 Thread JeRRy
---Gary typed--- Date: Tue, 23 Mar 2004 15:44:19 -0600 From: Gary Every [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Testing - no emails since 11:45 AM 3/23/04 Testing, have received no emails since 11:45 Gary Every Sr. UNIX Administrator Ingram Entertainment Inc. 2 Ingram Blvd, La

[PHP-DB] Problem, please help!

2004-03-20 Thread JeRRy
Hi, I have not used this site in a while and have a problem. I can't get anything to save to the database. :( Not sure what is wrong, need a fix fast as the site needs to be active in a few days by the latest so hopefully I can get help in that time. The code is a bit messy I know but here

Re: [PHP-DB] Re: Re: Re: SQL Server Query Failed

2004-03-20 Thread JeRRy
Might be an idea to delete the response deeper then the recently replied. As all this is archieved there is no use re-posting it. Sure keep the latest reply but keeping anything more makes these emails quite legnthy. Just a suggestion for you all. Cheers! J Find local movie times and

Re: [PHP-DB] Problem, please help!

2004-03-20 Thread JeRRy
snip $sql = UPDATE round1 SET game1='$game1' , game2='$game2' , game3='$game3' , game4='$game4' , game5='$game5' , game6='$game6' , game7='$game7' , game8='$game8' , misc='y' WHERE username= \$sidarray[0]\; This only updates an existing record, where the username is equal to

Re: [PHP-DB] BLOB

2004-03-15 Thread JeRRy
://www.teencoderz.com/article.php?story=20030808200312747 http://halfos.street-tv.net/lib/php/function.md5.php.htm I hope this helps. Any questions please reply to the board. :) ([EMAIL PROTECTED]) Jerry From: Ng Hwee Hwee [EMAIL PROTECTED] To: PHP DB [EMAIL PROTECTED] Date: Mon, 15 Mar 2004 09:18:50

Re: [PHP-DB] BLOB

2004-03-15 Thread JeRRy
From: Ng Hwee Hwee [EMAIL PROTECTED] To: DBList [EMAIL PROTECTED] Date: Mon, 15 Mar 2004 17:24:31 +0800 Subject: Re: [PHP-DB] BLOB hi all, snip Hi ;) snip with blob, i can't see the encoded password easily and thus there is 'maximum security'. haha.. but i'm still open to any form of

[PHP-DB] plain-text file (.txt) to mysql database

2004-03-01 Thread JeRRy
Hi, Quick question, does anyone know of a program/site that could do the following: I have a .txt file written in notepad. Bob Someone Mr Now I have a db with the fields: First Last Title Now the .txt file looks something like this: Bob Someone Mr Susan Taylor Miss Andrea Nothing Ms ...

[PHP-DB] plain-text file (.txt) to mysql database

2004-03-01 Thread JeRRy
Hi, Quick question, does anyone know of a program/site that could do the following: I have a .txt file written in notepad. Bob Someone Mr Now I have a db with the fields: First Last Title Now the .txt file looks something like this: Bob Someone Mr Susan Taylor Miss Andrea Nothing Ms ...

Re: [PHP-DB] plain-text file (.txt) to mysql database

2004-03-01 Thread JeRRy
. HTH Ignatius _ - Original Message - From: JeRRy [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 01, 2004 10:08 Subject: [PHP-DB] plain-text file (.txt) to mysql database Hi, Quick question, does anyone know of a program/site

Re: [PHP-DB] plain-text file (.txt) to mysql database

2004-03-01 Thread JeRRy
statements before doing the inserts to disable foreign key checks and others things to speed up the process, but in your case i think this would have no effect in the speed. - Original Message - From: JeRRy [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 01, 2004 9:08 AM

Re: [PHP-DB] plain-text file (.txt) to mysql database

2004-03-01 Thread JeRRy
Message - From: JeRRy [EMAIL PROTECTED] To: Ignatius Reilly [EMAIL PROTECTED] Sent: Monday, March 01, 2004 11:15 Subject: Re: [PHP-DB] plain-text file (.txt) to mysql database Hi, Right now I understnad. Thanks for the example. :) As for data.txt ... Where should I pop

[PHP-DB] Re: call to undefined function mysql_connect() [PHP / MySQL / Red Hat 8]

2004-02-26 Thread JeRRy
To: [EMAIL PROTECTED] From: Jono [EMAIL PROTECTED] Date: Wed, 25 Feb 2004 20:50:37 - Subject: call to undefined function mysql_connect() [PHP / MySQL / Red Hat 8] Hey. I've just installed Red Hat 8 from a downloaded distribution and have set up Apache, PHP and MySQL. The problem I

[PHP-DB] Re: Help with SQLite and ADOdb

2004-02-22 Thread JeRRy
willing to pay around $5 - $10 a month on hosting. Which is quite reasonable for the kind of service you get and services (more importantly). If you want to know more please let me know or point your web browser to http://www.tassiedemononline.org.au Jerry Find local movie times and trailers

Re: [PHP-DB] Need some help please!

2004-02-20 Thread JeRRy
Mikael, Hi :) First of all it's never a good idea to use ? instead of ?php. But anyway. Your loss. ;) My loss? Explain? (all ears) I've used only ? php a few times and end it with ? ... But I normally use only ? and ? and have *never* had a problem with it. But I am all ears knowing

[PHP-DB] Need some help please!

2004-02-19 Thread JeRRy
game and is not ideal. Ideas/code welcome here. Jerry Find local movie times and trailers on Yahoo! Movies. http://au.movies.yahoo.com -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Re: Is it safe to do this?

2004-02-18 Thread JeRRy
has a value of 5 or more? J Jerry wrote: Hi, Is it safe to do this: snip foreach ($addresses as $email) { $body = str_replace($email, $comp_uri, $body); mysql_query (update users SET email_setting='-1' WHERE email='$email') or die (Can't set email_setting

[PHP-DB] Is it safe to do this?

2004-02-17 Thread JeRRy
(UPDATE users SET email_setting='-1' WHERE emailerror 5) or die (Unable ); /snip Suggestions welcome. Jerry Find local movie times and trailers on Yahoo! Movies. http://au.movies.yahoo.com -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Re: php-db Digest 8 Feb 2004 01:40:01 -0000 Issue 2250

2004-02-07 Thread JeRRy
information to output to the webpage. I've done some reading online, but have not found what I am requiring ... Could be looking in the wrong place, as usual. All help appreciated. Jerry http://greetings.yahoo.com.au - Yahoo! Greetings Send your love online with Yahoo! Greetings - FREE

[PHP-DB] table values

2004-02-03 Thread JeRRy
Hi, I am running a bouncing script for bounced emails that updated to a database. What I want to do is have 3 bounces before dis-allowing emails to be sent to that user. So I have the following tables in my db: - Username Username of the user - Email Users Email Address - email_setting If set

[PHP-DB] Re: pop, php and mysql problem!

2004-01-19 Thread JeRRy
On ¬P´Á¤é 18 [EMAIL PROTECTED] 2004 06:54, JeRRy wrote: Could someone look/try my code below. It grabs emails from a mailbox and grabs emails within the BODY of the email and sends the details to a database to match and flag an account. Could you rephrase the above? I'm sure you meant

[PHP-DB] Re: pop, php and mysql problem!

2004-01-17 Thread JeRRy
On ¬P´Á¤é 18 [EMAIL PROTECTED] 2004 06:54, JeRRy wrote: Could someone look/try my code below. It grabs emails from a mailbox and grabs emails within the BODY of the email and sends the details to a database to match and flag an account. Could you rephrase the above? I'm sure you meant

[PHP-DB] What is missing/wrong? ?

2004-01-05 Thread JeRRy
Hi, What is missing/wrong here? What is MEANT to occour is explained below. I want to grab the bounced emails from a mailbox and grab the bounced email address from the body and input it in a query to update a db. But : mysql_query (DELETE FROM emaillist WHERE EMail = '$email'); Seems to

[PHP-DB] RE: What is missing/wrong? ?

2004-01-05 Thread JeRRy
Hi again, Also how do I output on the php page the email addresses it collects from the email body? echo Email was . $email . ; appears to return nothing... Thanks! ?php include(../db/connectionstart.php); global $IP_RegExp_Match, $Host_RegExp_Match, $Email_RegExp_Match;

[PHP-DB] re: What is missing/wrong?

2004-01-05 Thread JeRRy
Hi, Nevermind, got it to work now, always happens... Post and work it out 5 seconds later. :P J http://personals.yahoo.com.au - Yahoo! Personals New people, new possibilities. FREE for a limited time. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP-DB] displaying/deleting one at a time

2004-01-05 Thread JeRRy
Hi, This code works fine as long as you only have 1 email in your inbox. If there is more than 1 than it will return the last emails from: address rather than look in the $body for what's it meant to. So I am looking for a solution. One I thought which could be the simpliest way is to display

[PHP-DB] Re: Subject: grabbing text from a webpage and putting it in a query.

2004-01-04 Thread JeRRy
a webpage and putting it in a query. At 08:03 04/01/2004 +, JeRRy wrote: QUOTE $matcharray=array(Brisbane Lions v Collingwood at Gabba (night)); /QUOTE This will only work for that game matching the names right? I'd like to run some query or maybe 2 or 3 MAX Wrong. I guess you didn't read

[PHP-DB] re: handling newsletter bounced emails. :)

2004-01-03 Thread JeRRy
- HI there everyone, Is it possible to use PHP to check an email on the same server? I have a system setup for my newsletters which I want to expand, and basically when mails bounce back to a certain email address on the server as failed it would then read the email and remove the

[PHP-DB] Re: Subject: grabbing text from a webpage and putting it in a query.

2004-01-03 Thread JeRRy
All I can suggest is that you cut and paste the desired text into notepad and save it as a file. This is because their pages are not regular nor xhtml (or even well formed HTML) that you cannot parse the page reliably. So, cut and paste the text only and save it first using notepad,

[PHP-DB] **Season Greetings**

2003-12-28 Thread JeRRy
and best Wishes, Jerry (J) **SEASON GREETINGS** http://personals.yahoo.com.au - Yahoo! Personals New people, new possibilities. FREE for a limited time. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] Re: php mail() question

2003-12-27 Thread JeRRy
Change this: echo textarea name='headers' cols='250' rows='5'PRE,HtmlSpecialChars($headers[$line]),/PRE/textarea'; For echo textarea name='headers' cols='250' rows='5'PRE.HtmlSpecialChars($headers[$line])./PRE/textarea'; Which should display. I tried this a few days ago. All it

Re: [PHP-DB] Re: php mail() question

2003-12-23 Thread JeRRy
Change this: echo textarea name='headers' cols='250' rows='5'PRE,HtmlSpecialChars($headers[$line]),/PRE/textarea'; For echo textarea name='headers' cols='250' rows='5'PRE.HtmlSpecialChars($headers[$line])./PRE/textarea'; Which should display. I tried this a few days ago. All it

[PHP-DB] Re: php mail() question

2003-12-22 Thread JeRRy
You just need to call the RetrieveMessage function that returns the headers of each message and then look for the To: header. -- Regards, Manuel Lemos Free ready to use OOP components written in PHP http://www.phpclasses.org/ Ummm, why can't you give me a working code that grabs the headers

Re: [PHP-DB] PHP/DB speed

2003-12-22 Thread JeRRy
Robin Kopetzky wrote: Good afternoon! I am writing a project and have a speed concern... The code I am using is thus and is retrieving around 2,500 records: $result = mysql_query($sql) while ($row = mysql_fetch_array($result)) { build

[PHP-DB] Re: php mail() question

2003-12-22 Thread JeRRy
Hi, Okay removed value and have this now: ---some code--- echo Form Action='pop_update.php' METHOD='POST' enctype='multipart/form-data'; echo textarea name='headers' cols='250' rows='5'PRE,HtmlSpecialChars($headers[$line]),/PRE/textarea'; echo input name='submit' type='submit'

[PHP-DB] table match lookup!

2003-12-18 Thread JeRRy
Hi, If I have a table named quote and the field has 30 words in it is there a way to pin-point a certain word and match it with another query in PHP? So a quote may say: Tomorrow never comes And I wanted 'never' to be dragged out of all quotes and counted in another table to keep a track of

[PHP-DB] Re: php mail() question

2003-12-18 Thread JeRRy
Hi, Just to follow-up on this. I knuckled down and did some work regarding this thread. What I achieved makes things work a tad faster than previously however it did not work out as I wanted entily but has fastened the process somewhat but still have a question regarding it. I have managed to

[PHP-DB] Re: php mail() question

2003-12-17 Thread JeRRy
to reply. Jerry http://personals.yahoo.com.au - Yahoo! Personals New people, new possibilities. FREE for a limited time. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Re: php mail() question

2003-12-16 Thread JeRRy
if there was a way to look in the $body of the email for an email address I thought perg_match would do something like that but maybe not? Is there a PHP matching function/command? So it coulds search for '@' in the email $body and skip the $headers. Jerry Hello, That's tricky. What I do is to have

[PHP-DB] Re: php mail() question

2003-12-16 Thread JeRRy
Jerry, Actually I just relised what you meant. :P And that would work great by having it like that.. Something like this would work fine. If the email bounces return it to [EMAIL PROTECTED] So I would set the sender as whatever I want and the return_path as a way to identify the user

[PHP-DB] Re: php mail() question

2003-12-15 Thread JeRRy
it was sucessful or not. What I need to know is how I get the from address? Jerry --- Manuel Lemos [EMAIL PROTECTED] wrote: Hello, On 12/14/2003 11:51 PM, Jerry wrote: Php mail() question. I use php mail() frequently, dragging data from a mysql database. I am not sure if this is possible

[PHP-DB] php mail() question

2003-12-14 Thread JeRRy
Hi, Php mail() question. I use php mail() frequently, dragging data from a mysql database. I am not sure if this is possible but thought I'd throw it on this board. in php mail() function you can set a return_address etc. Is it possible to change this and run a query? I mean if the email

[PHP-DB] Re: Downloading PHP source from a PHP

2003-12-02 Thread JeRRy
To: [EMAIL PROTECTED] From: Kim Steinhaug [EMAIL PROTECTED] Date: Mon, 1 Dec 2003 22:48:00 +0100 Subject: Re: Downloading PHP source from a PHP filename, possible? What you do is, if my logic is correct... Read the entire file in to a variable and send it back to the browser with another

[PHP-DB] IFRAME sound question!

2003-12-02 Thread JeRRy
Hi, I know this is a bit off-topic but I find to get faster answers from this Mailing List (generally within a few minutes) than any other list. I find it quicker to post here and get an answer than trying to even search it on the web. And besides most of the search results on the web are not

[PHP-DB] Dynamic Website Question!

2003-11-30 Thread JeRRy
, etc... Is there a way in PHP or something to make updates show up live as they happen instead of the yucky meta refresh tag in HTML? Thanks for your time in advance. Jerry http://personals.yahoo.com.au - Yahoo! Personals New people, new possibilities. FREE for a limited time. -- PHP Database

Re: [PHP-DB] Downloading PHP source from a PHP filename, possible?

2003-11-29 Thread JeRRy
/mysql etc. Which Only I can edit. I understand PHP has a ftp service in PHP, could this work to download the source? Thanks for your time. Jerry Date: Fri, 28 Nov 2003 22:35:16 -0500 From: David T-G [EMAIL PROTECTED] To: PHP DB list [EMAIL PROTECTED] CC: JeRRy [EMAIL PROTECTED] Subject: Re

[PHP-DB] Downloading PHP source from a PHP filename, possible?

2003-11-28 Thread JeRRy
. Does that make sense? If not please reply and I'll try and explain better. Thanks for your time. Jerry http://personals.yahoo.com.au - Yahoo! Personals New people, new possibilities. FREE for a limited time. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP-DB] debugging / help required urgently.

2003-11-21 Thread JeRRy
. All the help is needed here if people can provide it. Thanks in advance, and sorry for the long email. But this problem is really giving me the 'you know what' now. Jerry http://personals.yahoo.com.au - Yahoo! Personals New people, new possibilities. FREE for a limited time. -- PHP Database

[PHP-DB] mysql or php calculations required!

2003-10-31 Thread JeRRy
Hi, I have got a written PHP page that feeds most information off a mysql database. But I need some calculations completed either via the php page itself or mysql functions. But let me explain what I want. Maybe I could use a javascript on this but prefer all the code hidden away from the eyes

[PHP-DB] Multiple adds?

2003-10-22 Thread Jerry Artman
of 3rd party plug-ins. Jerry Artman Budget and Reimbursement [EMAIL PROTECTED] -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] WHERE statement used multiple times.

2003-10-20 Thread JeRRy
. - Chris Thanks Chris, the help is mostly appreciated. I have got the code to skip emails that are flagged with a y vlaue in emailerror field. :) Thanks again. Jerry http://personals.yahoo.com.au - Yahoo! Personals New people, new possibilities. FREE for a limited time. -- PHP Database

[PHP-DB] WHERE statement used multiple times.

2003-10-19 Thread JeRRy
Hi, If I was to want to use the WHERE statement multiple times (more than once) how do I seperate each WHERE statement? Would it be with a ',' (coma) or a ' ' (space) or what? Or not possible to have multiple WHERE's in the one query? I need 2 tables checked before executing the

[PHP-DB] multiple WHERE's

2003-10-18 Thread JeRRy
first_name,last_name,email,.$mysql_prefix.users.username from .$mysql_prefix.users $leftjoinfirst where vacation'$curdate' $leftjoinsecond limit $thisstart,$massmail[stop]); @mysql_query(drop table tmpcmailcttbl); while ([EMAIL PROTECTED]($users)) Jerry http://personals.yahoo.com.au - Yahoo

Re: [PHP-DB] Email bouncer Program(s) - know any?

2003-09-30 Thread JeRRy
at my doamin it will bounce and say a message and stating the reason. But I need to know what I need to achieve it. Jerry http://search.yahoo.com.au - Yahoo! Search - Looking for more? Try the new Yahoo! Search -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP-DB] Email bouncer Program(s) - know any?

2003-09-29 Thread JeRRy
Hi, I run PHP and mysql on my site. I allow people to use a PHP page to send me an email that is logged in the mysql for logging reasons. If someone sends me an email to [EMAIL PROTECTED] (fake address, not real) when it is sent it does not bounce, instead it gets sent to the root email

[PHP-DB] figures question

2003-09-27 Thread JeRRy
Hi, I have in my database a total value which looks like this. 0.0 If the figure is more than 9.9 it goes to 10.0 and so on.. The first 2 digits after the . is cents and the following is part of a cent. So it appears in the database for example like 7.51234 .. But I want to

[PHP-DB] Calculations

2003-08-30 Thread JeRRy
worked out, I should of created another field to get the table score for that round from the start and keep it but I did not think of that earlier in the year. If it's tto much work I wont bother about it, but thought I'd ask and see if anyone can help. Thanks! Jerry http://search.yahoo.com.au

[PHP-DB] a bandwitch question

2003-08-05 Thread JeRRy
Hi, I have this site that uses PHP and mysql. Now I have a page that has 2 frames in it, a top frame and a bottom frame. Top frame loads a page from the server itself and the bottom frame loads an external website. (off the server) So top frame loads: http://localhost/blah.php And the

[PHP-DB] Problem with page layout!

2003-08-01 Thread JeRRy
ideas why it is outputing out of line? All help mostly appreciated. Thanks! Jerry http://personals.yahoo.com.au - Yahoo! Personals - New people, new possibilities! Try Yahoo! Personals, FREE for a limited period! -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP-DB] editing part of a field

2003-07-17 Thread JeRRy
the text needs to be unchanged. I have over 9,000 posts to update and fix the image url for it. I can't afford to muddle up the posts. Jerry From: Jason Wong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Date: Thu, 17 Jul 2003 13:43:17 +0800 Subject: Re: [PHP-DB] editing part of a fiedl

[PHP-DB] editing part of a fiedl!

2003-07-16 Thread JeRRy
. To fix the image url. Is there a mysql query I can use to edit where board/emotions with /emotions? I am not sure if there is a way but I expect it can't be done but thought I'd ask. Jerry http://mobile.yahoo.com.au - Yahoo! Mobile - Check compose your email via SMS on your Telstra or Vodafone

[PHP-DB] editing part of a fiedl!

2003-07-16 Thread JeRRy
. To fix the image url. Is there a mysql query I can use to edit where board/emotions with /emotions? I am not sure if there is a way but I expect it can't be done but thought I'd ask. Jerry http://mobile.yahoo.com.au - Yahoo! Mobile - Check compose your email via SMS on your Telstra or Vodafone

[PHP-DB] editing part of a fiedl!

2003-07-16 Thread JeRRy
. To fix the image url. Is there a mysql query I can use to edit where board/emotions with /emotions? I am not sure if there is a way but I expect it can't be done but thought I'd ask. Jerry http://mobile.yahoo.com.au - Yahoo! Mobile - Check compose your email via SMS on your Telstra or Vodafone

[PHP-DB] editing part of a fiedl!

2003-07-16 Thread JeRRy
. To fix the image url. Is there a mysql query I can use to edit where board/emotions with /emotions? I am not sure if there is a way but I expect it can't be done but thought I'd ask. Jerry http://mobile.yahoo.com.au - Yahoo! Mobile - Check compose your email via SMS on your Telstra or Vodafone

RE: [PHP-DB] question about '

2003-07-11 Thread Jerry
I think you should use addslashes to store the text in the database and then stripslashes when displaying the text. I think that should work, but I'm new to PHP so I might be wrong. Jerry -Original Message- From: Chris Payne [mailto:[EMAIL PROTECTED] Sent: Saturday, July 12, 2003 2:11

[PHP-DB] Re: PHP help

2003-06-30 Thread JeRRy
snip PHP file called addform.php: ? $user=chris; $database=test; mysql_connect(localhost,$user); @mysql_select_db($database) or die(unable to select database); $query=INSERT INTO login VALUES ('$login'); mysql_query($query); mysql_close(); ? /snip Okay the line $query is wrong. So I quote...

[PHP-DB] Re: php-db Digest 25 Jun 2003 15:10:42 -0000 Issue 1899

2003-06-27 Thread JeRRy
on php talk how do I make a java popup message appear in a PHP code? Is there a way to do this, alert? There are many ways to do it im Javascript but was wondering if PHP had a way to do it in the PHP code itself. (hidden away if possible) Jerry http://mobile.yahoo.com.au - Yahoo! Mobile

[PHP-DB] md5 question!

2003-06-24 Thread JeRRy
Hi, If I use md5 to handle passwords to my database is there a way to reverse the action if someone forgets their password? Is there a way for me to decode the 32bit to plain text? Jerry http://mobile.yahoo.com.au - Yahoo! Mobile - Check compose your email via SMS on your Telstra or Vodafone

Re: [PHP-DB] md5 question!

2003-06-24 Thread JeRRy
it, somehow. But what I have heard and read it's very tight and probably the best method to handle passwords for now, until something new is released. Which will happen when md5 is broken, like everything else after a little bit of time. Jerry --- Marco Tabini [EMAIL PROTECTED] wrote: Hi Jerry

Re: [PHP-DB] md5 question!

2003-06-24 Thread JeRRy
Hi, Hmmm okay... So if the passowrd was. jerry and the md5 output was SKHDJHDJDHJDHSfdfs and another user sets their passowrd to the same as mine does that mean the md5 output would be identical to the last as the same password is entered? e.g. User 1: Username: Fred Password: jerry User 2

Re: [PHP-DB] md5 question!

2003-06-24 Thread JeRRy
, instead I'm going to give the examples I have recieved a go and see what happens. Thanks everyone for your help/feedback/ideas and code on this subject, it's been overwhelming. Very much appreciated. Jerry --- Marco Tabini [EMAIL PROTECTED] wrote: On Tue, 2003-06-24 at 09:08, JeRRy wrote: I

Re: [PHP-DB] md5 question!

2003-06-24 Thread JeRRy
Hi, Aha... That's what I thought! :) So with md5 I can retrieve the passwords back to the user if they lose them via email. That's what I was seeking an answer to. Thanks so much. Jerry --- [EMAIL PROTECTED] wrote: They would be the same, they have to be. If you can de-crypt

Re: [PHP-DB] md5 question!

2003-06-24 Thread JeRRy
more secure than they already are. Any good websites that is good reading for this? I mean reliable sites with no bull ***rubbish*** which does not send on the wrong messages. Jerry --- Marco Tabini [EMAIL PROTECTED] wrote: On Tue, 2003-06-24 at 09:36, JeRRy wrote: Hi, Hmmm okay... So

[PHP-DB] Re: test

2003-06-21 Thread JeRRy
Are we 'testing' something here? Seems to be working, but I guess I really don't know because I have NFI what is being tested here. Nor do I expect anyone to care to explain! ;) To: [EMAIL PROTECTED] From: fazla [EMAIL PROTECTED] Date: Sat, 21 Jun 2003 16:30:09 +0200 Subject: Re: test

[PHP-DB] apache, mysql, php4 for windows.

2003-06-20 Thread JeRRy
Hi, I have apache, mysql and php4 for windows installed. I grabbed all my webapages and mysql databases to my pc. But my login cookies/script fails to work at all. It wont let me login. Is anyone aware of a fix for this? I am only using a basic login script/cookie that looks for a username

[PHP-DB] Re: apache, mysql, php4 for windows.

2003-06-20 Thread JeRRy
are appreicated. Jerry http://mobile.yahoo.com.au - Yahoo! Mobile - Check compose your email via SMS on your Telstra or Vodafone mobile. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] (can't remember my original subject) - php4, apache and mysql????

2003-06-20 Thread JeRRy
not think it would be my code that is why I did not post in my first post. (my code) Anyways thanks again for being helpful. I have learnt from this experience. :) Jerry http://mobile.yahoo.com.au - Yahoo! Mobile - Check compose your email via SMS on your Telstra or Vodafone mobile. -- PHP

[PHP-DB] php /mysql / viewing offline question

2003-06-14 Thread JeRRy
, only offline viewing. So I thought there mught be another program I could use for this. If so, please let me know. If Apache is the only option I guess I'll have to use that. Thankyou for your suggestions / help in advance. Kind Regards, Jerry http://mobile.yahoo.com.au - Yahoo! Mobile - Check

RE: [PHP-DB] ?? Login problems ??

2003-06-09 Thread JeRRy
. Thankyou again. Jerry http://mobile.yahoo.com.au - Yahoo! Mobile - Check compose your email via SMS on your Telstra or Vodafone mobile. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] ?? Login problems ??

2003-06-08 Thread JeRRy
\ Name=\Password\; echo BR; echo Input Type=\submit\ Value=\Submit\; echo Input Type=\hidden\ Name=\redirect\ Value=\tip.php\; echo /FORM; ? Any ideas? Thanks! Jerry http://mobile.yahoo.com.au - Yahoo! Mobile - Check compose your email via SMS on your Telstra or Vodafone mobile. -- PHP

[PHP-DB] ?? php and mysql database question ??

2003-06-07 Thread JeRRy
for your time in advance. Kind Regards, Jerry http://mobile.yahoo.com.au - Yahoo! Mobile - Check compose your email via SMS on your Telstra or Vodafone mobile. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Loading database information from a text file

2003-06-07 Thread JeRRy
, Jerry http://mobile.yahoo.com.au - Yahoo! Mobile - Check compose your email via SMS on your Telstra or Vodafone mobile. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Re: ?? php and mysql database question ??

2003-06-07 Thread JeRRy
correctly. Thanks people for all your help in pointing me in the right direction. Mostly appreicated and I hope I can help some of you in return sometime soon. Now off to do my offline work. :) Kind Regards, Jerry http://mobile.yahoo.com.au - Yahoo! Mobile - Check compose your email via SMS on your

<    1   2   3   >