Re: [PHP-DB] Cookies on a Macintosh

2001-01-19 Thread Jerry
how do you know it sets the cookie if it refuses to use the variable? How does it refuse to use the variable in a manner that lets you know it set the cookie? Jerry -- http://www.hoboes.com/jerry/ "Give a man a fish and you feed him for a day. Teach him to fish, and you've depleted

[PHP-DB] debugging / help required urgently.

2003-11-21 Thread JeRRy
t instead of having no idea what is causing the problem. 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 peop

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

2003-11-28 Thread JeRRy
icked. 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, v

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

2003-11-29 Thread JeRRy
things with PHP/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" <[EMAI

[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

[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 wh

[PHP-DB] More of a question rather than seeking code. :)

2003-12-12 Thread JeRRy
to make things easier for me. If you need further information please 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] 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 boun

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

2003-12-15 Thread JeRRy
ven output something to make sure 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() frequ

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

2003-12-16 Thread JeRRy
inking 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'

[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? Is

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

2003-12-17 Thread JeRRy
f you wish 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] 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 h

[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 b

[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)) > { > bu

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

2003-12-22 Thread JeRRy
Hi, Okay removed "value" and have this now: ---some code--- echo ""; echo "",HtmlSpecialChars($headers[$line]),"'"; echo ""; ---some code--- What does this do? Well I added and for a testing purpose. It returns in the textarea ... So it's skipping the HtmlSpecialChars code. Why? Okay i

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

2003-12-23 Thread JeRRy
Change this: echo "",HtmlSpecialChars($headers[$line]),"'"; For echo "".HtmlSpecialChars($headers[$line])."'"; Which should display. I tried this a few days ago. All it outputs is the "PRE" HTML tags. even replacing the ',' with '.' . That's what I thought would need to be done to

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

2003-12-27 Thread JeRRy
Change this: echo "",HtmlSpecialChars($headers[$line]),"'"; For echo "".HtmlSpecialChars($headers[$line])."'"; Which should display. I tried this a few days ago. All it outputs is the "PRE" HTML tags. even replacing the ',' with '.' . That's what I thought would need to be done to

[PHP-DB] **Season Greetings**

2003-12-28 Thread JeRRy
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

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

2004-01-02 Thread JeRRy
Hi, Not sure if this is possible or easy or what but thought I'd ask here first. I am running a tipping competition on a website where you need to tip the winner of each game. But I need to get each game/round and place it in my database so people can tip on them. The games/rounds are located o

[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 address

[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, befor

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

2004-01-04 Thread JeRRy
t: grabbing text from a webpage and putting it in a query. At 08:03 04/01/2004 +, JeRRy wrote: > >$matcharray=array("Brisbane Lions v Collingwood at >Gabba (night)"); > > >This will only work for that game matching the names >right? I'd like to run some

[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! Nmsgs . "\n"; $headers = imap_headers($mbox); if ($headers == false) { echo "There are no messages to be deleted.\n

[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: http://www.php.net/

[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 o

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

2004-01-17 Thread JeRRy
lease? Thanks, Jerry Nmsgs . "\n"; $headers = imap_headers($mbox); if ($headers == false) { echo "There are no messages to be deleted.\n"; } else { while (list ($key, $val) = each ($headers)) { for ($i = 1; $i <= imap_num_msg($mbox); $i++) { $header = imap_

[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&#

[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 >>&g

[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 t

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

2004-02-07 Thread JeRRy
ow to execute a message or HTML 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 onli

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

2004-02-17 Thread JeRRy
r='+1' WHERE email='$email'") or die ("Can't update email_setting"); mysql_query ("UPDATE users SET email_setting='-1' WHERE emailerror > 5") or die ("Unable "); 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: Is it safe to do this?

2004-02-18 Thread JeRRy
='-1' WHERE emailerror > 5 ... will that set email_setting to -1 if emailerror has a value of 5 or more? J Jerry wrote: > Hi, > > Is it safe to do this: > > > > foreach ($addresses as $email) { > $body = str_replace($email, $comp_uri, $body

[PHP-DB] Need some help please!

2004-02-19 Thread JeRRy
hy game, 3 boxes, run your mouse over them to scratch, if you win it pops up a java box saying you won and your Username. What I want to do is do a query to a db and update an accounting table to credit users account if they win, and if they lose do nothing. But I am not sure what to add with thi

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 anyway. Your loss. ;) My loss? Explain? (all ears) I've used only ... But I normally use only and have *never* had a problem with it. But I am all ears knowing why though? I have seen alot of different ones but hav

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

2004-02-22 Thread JeRRy
e write direction if your 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 mo

[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] 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 ... Now

[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 ... Now

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

2004-03-01 Thread JeRRy
your text file > goes to what DB column. > > HTH > Ignatius > _____ > - Original Message - > From: "JeRRy" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Monday, March 01, 2004 10:08 > Subject: [PHP-DB] plain-t

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

2004-03-01 Thread JeRRy
ert > the data, you could put some 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&

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

2004-03-01 Thread JeRRy
ike > d:/mysql/data/my_database) > > _ > - Original 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

[PHP-DB] backup via php

2004-03-10 Thread JeRRy
Hi, Just a question regarding backing up a www or public_html directory. I want to do a backup of only inside the www or public_html directory. So I don't want to copy the directory name itself but the contents inside including directories inside it. Is there a way via PHP this can be achieve

Re: [PHP-DB] BLOB

2004-03-15 Thread JeRRy
http://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 PROTECT

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, Hi ;) 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 sugg

[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 goes

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 trailers

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

2004-03-20 Thread JeRRy
> > > > > > $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 > user

[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] 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 n

[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 ente

[PHP-DB] If statement or something else?

2004-03-31 Thread JeRRy
Hi, Okay here is a sniplet of some code... ', '' ) FROM round2 where username = \"$sidarray[0]\""); $result = mysql_query($qr); $row = mysql_fetch_array($qr); echo $row['0']; ?> Okay what I am trying to do is this, if a person has tipped misc = y if not it's blank. Now if y I want to div

[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 hand

[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 t

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

2004-03-31 Thread JeRRy
e others filter 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 > >

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

2004-04-01 Thread JeRRy
hy my script fails? Jerry Script below: Nmsgs . "\n"; $headers = imap_headers($mbox); if ($headers == false) { echo "There are no messages to be deleted.\n"; } else { while (list ($key, $val) = each ($headers)) { for ($i = 1; $i <= imap_num_msg($mbox); $i++) { $m

[PHP-DB] General Question!

2004-04-04 Thread JeRRy
If I have a form that has in a text field something like this below how would my query look to update all in the form to the fb? So there is data inputed in username field and total. Now let's say there is 5 of these text fields for the one form. All named the same (e.g. username and total) b

[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 n

[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

[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

[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 ha

[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 bac

[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

[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. Would

[PHP-DB] Re: Test

2004-08-02 Thread JeRRy
Date: Mon, 02 Aug 2004 10:40:31 +0400 From: "Mikhail U. Petrov" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Test test - What was the test for? ;) This list is actualy active! J Find local movie times and trailers on Yahoo! Movies. http://au.movies.yahoo.com -- PHP

[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 doma

[PHP-DB] RE: error

2004-09-28 Thread JeRRy
;//comment" where "line 9" is so we know and can answer your question 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

[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: http://au.php.net/manual/en

[PHP-DB] php latest release!

2005-01-10 Thread JeRRy
With PHP latest release from http://php.net/ do we require to update Zend Optimizer? People are claiming some scripts previously that worked in a previous version of PHP works and not with the new version. Why is it required to update Zend? J Find local movie times and trailers on Yahoo! Movie

[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: Adding Up MySQL Results

2005-01-16 Thread JeRRy
I run this mysql query: "select sum(quantity)*price,price from sale where dvd_id=1 group by price"; I get this result: sum(quantity)*price price 450.00 15.00 29.99 29.99 I want to display the sum of the values in the first column (450.00+29.99), but I can

[PHP-DB] Using a PHP script/query in flash (?)

2005-01-20 Thread JeRRy
spice it up a bit. :) Thanks for your time. If you have time to demonstrate something that would be good too coz I have made flash but have no idea on this topic. Jerry Find local movie times and trailers on Yahoo! Movies. http://au.movies.yahoo.com -- PHP Database Mailing List (http

[PHP-DB] Is this possible?

2005-01-22 Thread JeRRy
Hi, Is it "security safe and possible" to use my server to query another server, outside the local zone, and make updates to another server using a PHP page from my server? I'm just wondering. So in other words I'd have a DB setup to hold users domains, db names, db usernames, db passwords etc o

[PHP-DB] Is this possible?

2005-01-22 Thread JeRRy
Hi, Is it "security safe and possible" to use my server to query another server, outside the local zone, and make updates to another server using a PHP page from my server? I'm just wondering. So in other words I'd have a DB setup to hold users domains, db names, db usernames, db passwords etc o

[PHP-DB] Auto Responses?

2005-01-22 Thread JeRRy
Why do people set auto responses on a mailing list like this? It's crazy, imagine all the auto replies this list would generate. As if I care if a user is not able to reply because they have gone on holidays or something. If they don't reply obviously they are not around or can't answer or don't

Re: [PHP-DB] Auto Responses?

2005-01-23 Thread JeRRy
> I do support you too, Jerry. People should either > somehow exclude > 'php-db'/other mailing lists to be auto-replied to > or they must keep > off their auto-replies with themselves. Yes most mail systems allows you to exclude certain domains from getting a auto

[PHP-DB] Re: Is this possible?

2005-01-23 Thread JeRRy
st"? J Date: Sun, 23 Jan 2005 15:51:02 +1100 (EST) From: "JeRRy" <[EMAIL PROTECTED]> To: php-db@lists.php.net Subject: Is this possible? Hi, Is it "security safe and possible" to use my server to query another server, outside the local zone, and make updates to

[PHP-DB] Re: Warning: ocilogon(): _oci_open_server: â in d:\program files\apachegroup\apache\htdocs\codebase\oci8test2.php on line 3

2005-02-01 Thread JeRRy
will understand what is goin on when you make the changes and the error reproduces. That's my suggestion! Jerry php-db@lists.php.net 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: Newbie Setup Trouble

2005-02-07 Thread JeRRy
To: php-db@lists.php.net From: "Mike Rondeau" <[EMAIL PROTECTED]> Date: Sun, 6 Feb 2005 17:57:17 -0800 Subject: Newbie Setup Trouble Hello, Hi :) I have just begun study of using PHP, MySQL and Apache server. Right now I'm following a book, "PHP and MySQL For Dummies" and am having tro

[PHP-DB] Re: 'Page can not be displayed' when hitting the back button

2005-02-14 Thread JeRRy
t/manual/en/ref.session.php#ini.session.cache-limiter http://au2.php.net/manual/en/function.session-start.php http://au2.php.net/manual/en/function.session-cache-limiter.php Jerry From: "Jason Walker" <[EMAIL PROTECTED]> To: php-db@lists.php.net Date: Sun, 13 Feb 2005 19:

[PHP-DB] Connect to DB2-win2k through PHP4-Linux

2002-01-30 Thread Jerry
PHP command odbc_connect ? When I tried I received the error: "Fatal error: Call to undefined function: odbc_connect()"... 3.> I didn't have any directory sqllib (like on windows platform) after IBM DB2 Client installation, is it normal ? 3.> Do I need to install another softwa

[PHP-DB] Database Connection

2002-02-05 Thread Jerry
ter compiling PHP with the option "--with-ibm-db2=/home/db2inst1", Apache doesn't start anymore. Do I need to install iODBC (or another ODBC) or is it included ? Any idea what can cause this problem and how to solve it ? Thanks Jerry -- PHP Database Mailing List (http:

Re: [PHP-DB] Database Connection

2002-02-05 Thread Jerry
Thanks Andrew for your answer. In the environment variables I have already: DB2INSTANCE=db2inst1 LD_LIBRARY_PATH=:/home/db2inst1/sqllib/lib Is it correct ? Or does it need to point to the DB2 Client directory /usr/IBMdb2/V7.1/lib Thanks. Jerry "Andrew Hill" <[EMAIL PROTECT

[PHP-DB] PHP - DB2 / odbc_connect() failed

2002-03-07 Thread Jerry
z@ in SQLConnect in /svr/jerry/web/myphppage.php" But on the Linux server from the command line I don't have any problem to connect to the database... Do you have any idea what is the problem and how to solve it ? Thanks. Jerry -- PHP Database Mailing List (http://www.php.net/) To unsubscri

[PHP-DB] INSERT IMG in Database

2002-03-14 Thread Jerry
38686 in SQLExecDirect in /svr/myfile.php But if I have $userfile="C:\myimage.jpg"; it will work (of course if the file is present on the C drive...) My question is How can I insert an image in the database without using its file name ? Can I directly send the image object to the database ? Thanks Jerry -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] MSSQL connect

2001-12-21 Thread Jerry
Hi I have PHP on windows 2000 web server I would like to remote to a MS SQL database on another web server. I tried something like: But it didn't work. Please help me. Jerry -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For addit

[PHP-DB] MSSQL DB Connect

2001-12-21 Thread Jerry
Hi I have PHP on windows 2000 web server I would like to remote to a MS SQL database on another web server. I tried something like: But it didn't work. Please help me. Jerry -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For addit

[PHP-DB] Re: MSSQL DB Connect

2002-01-02 Thread Jerry
Thanks Jeremy, I finally found the solution: 0){ print "Number of rows: $number"; while($i < $number){ $dateval= mssql_result($result,$i,"dateval"); echo "$dateval"; $i++;} }?> And it works fine ! Now I'm looking for the same function for IBM DB2 da

[PHP-DB] Re: Urgent! Store Data In A Text File!

2002-01-02 Thread Jerry
To retrieve data from a text file, I'm using: $fp= file("textfile.txt","r"); foreach($fp as $line) echo "- $line -"; Jerry "Arik Ashepa" <[EMAIL PROTECTED]> wrote: > Can someone please tell me how can I add and retrive data from a t

[PHP-DB] Connect to IBM DB2

2002-01-02 Thread Jerry
server without ODBC ? My config is: Web Server: IIS on windows 2000 Server Database Server: IBM DB2 V7.1 on windows 2000 Server PHP4 for windows Thanks. Jerry -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-ma

[PHP-DB] Re: WebMail

2002-01-15 Thread Jerry
/Scripts_and_Programs/Email_Systems/Web-based_ Email/index.html There are so many out there... ;-) Jerry "Michael K. Dolan Jr." <[EMAIL PROTECTED]> wrote: Hi, I'm looking for a good web based email client (preferably easy to setup and done in PHP of course). We have a

[PHP-DB] mySQL administration on Linux through NT

2002-01-16 Thread Jerry
Hi, I have mySQL on LINUX Does anybody knows a windows software to manage mySQL through win2k (TCP/IP - Intranet) ? With mySQL on win2k, you can manage it using a windows interface. I'm looking for the same kind of interface to manage mySQL on a Linux platform from win2k. Thanks.

[PHP-DB] Re: php-db Digest 5 Feb 2003 17:13:51 -0000 Issue 1661

2003-02-05 Thread JeRRy
ge. Could someone please show me how to achieve this? At pressent it only produces an error if the database is not found. Nothing else! Jerry http://movies.yahoo.com.au - Yahoo! Movies - What's on at your local cinema? -- PHP Database Mailing List (http://www.php.net/) To unsubscri

[PHP-DB] Column Sort Question

2003-03-05 Thread Jerry
staying persistent. I tried playing around with session with no luck. What is the best way to resort on a column? Thanks, Jerry -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] PHP to mysql to email

2003-03-09 Thread JeRRy
their a way to remove the entry that the email bounced email matches? I'd say this would be more complicated but any suggestions are welcome on this. I could always manually remove them for the time being. Jerry http://mobile.yahoo.com.au - Yahoo! Mobile - Check & compose your email v

[PHP-DB] some php and database questions!

2003-03-11 Thread JeRRy
n try for myself. Thanks so much in advance, credit will be given. 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] multiple queries in PHP ????

2003-03-24 Thread JeRRy
anks in advance. I alsready have the script to update table1 and does this fine but am not sure how to do mulitple queries in the one PHP page. Jerry http://mobile.yahoo.com.au - Yahoo! Mobile - Check & compose your email via SMS on your Telstra or Vodafone mobile. -- PHP Database

  1   2   3   >