Re: [PHP-DB] PDO Exception Handling Question

2007-04-20 Thread Jerry Schwartz
I hope by now you figured this out, but you have to use $dbh->setAttribute() to enable exception handling for anything but the initial object creation. Worse yet, as of 2007/04/20 the return values of setAttribute are reversed. It returns TRUE on failure and FALSE on success. "Rodney Topor" <[E

[PHP-DB] PDO setAttribute return value

2007-04-20 Thread Jerry Schwartz
Is it my imagination, or does setAttribute return FALSE on success and TRUE on failure? I've tested it with getAttribute, and it definitely seems to work the reverse of what the documentation states. I'm using MySQL, and I am setting the error handling. -- PHP Database Mailing List (http://ww

[PHP-DB] Yahoo! Mail and php-db digest mail-out!

2007-01-18 Thread JeRRy
Hi, Not PHP or MYSQL related but relates to the use of this DIGEST using Yahoo! Mail (beta). Is there anyone else that uses Yahoo! Mail (beta) and recieves these DIGESTS? I don't mean the single emails you get but the DIGEST. If I go back to the OLD version of the mail and view any DIGEST e

[PHP-DB] Re: Session Problem

2007-01-16 Thread JeRRy
> Forget to tell you, that if I used http://localhost > , the session running well... > > But if I change with http://hostname , the session > wasn't running... > http://localhost and http://hostname/ are 2 COMPLETELY different things and can reflect NOTH

[PHP-DB] part of url link to webform Question.

2006-11-29 Thread JeRRy
your time. Jerry Send instant messages to your online friends http://au.messenger.yahoo.com

Re: [PHP-DB] Re: RE : RE: [PHP-DB] re: small question php/postgreSQL (basic question, not small)

2006-11-07 Thread JeRRy
True, sorry! (missed that, haha wake up!) - Original Message From: Chris <[EMAIL PROTECTED]> To: JeRRy <[EMAIL PROTECTED]> Cc: php-db@lists.php.net Sent: Wednesday, 8 November, 2006 3:14:01 PM Subject: Re: [PHP-DB] Re: RE : RE: [PHP-DB] re: small question php/postgreSQL (ba

[PHP-DB] Re: RE : RE: [PHP-DB] re: small question php/postgreSQL (basic question, not small)

2006-11-07 Thread JeRRy
n, also change the $query to result in the query statement try $result=pg_query($query) or die(pg_error()); //to see if there are any errors with the query while($row=pg_fetch_array($result,NULL,PGSQL_ASSOC)) { echo "Title: ".$row['isbn_no']." "; echo "blah &qu

Re: [PHP-DB] RE : RE: [PHP-DB] re: small question php/postgreSQL (basic question, not small)

2006-11-07 Thread JeRRy
ed or something? Jerry - Original Message From: Bastien Koert <[EMAIL PROTECTED]> To: [EMAIL PROTECTED]; [EMAIL PROTECTED]; php-db@lists.php.net Sent: Wednesday, 8 November, 2006 2:45:49 AM Subject: RE: [PHP-DB] RE : RE: [PHP-DB] re: small question php/postgreSQL (basic question

[PHP-DB] re: small question php/postgreSQL (basic question, not small)

2006-11-07 Thread JeRRy
example and is a poor one to use. If your nerw you have to go a bit more into it than Hello World code. (which in my opinion gets you know-where) been there done that. Google how to display items in a DB in PHP and shoot you get some handy things. I just feel this question is not required here when google has all the answers like this. Jerry

[PHP-DB] Re: Rss Standard text to RSS format!

2006-05-18 Thread JeRRy
Hi, In reponse to the person that recently posted for conversion try these links: (Sorry the proper subject was lost while doing this) http://www.barelyfitz.com/projects/jssyndicate/ http://www.google.com.au/search?hl=en&q=convert+standard+data+to+RFC822+with+php&btnG=Search&met

Re: [PHP-DB] Warning, Subscribers please read!

2006-05-13 Thread JeRRy
Hi, Not sure but if it does it's not working lately. Probably gone on a vacation. J Dwayne Hottinger <[EMAIL PROTECTED]> wrote: Doesnt the list run a spam filter ie spamassassin or bogofilter via procmail? - Original Message ----- From: "JeRRy" To: S

[PHP-DB] Warning, Subscribers please read!

2006-05-11 Thread JeRRy
reful people, most of you would be aware of the issues surrounding spam but this posting was to make sure that everyone is aware of it happening. Of course this email would not cover the whole info but is a starting point for you. Take care all and be careful. Jerry

[PHP-DB] Re: Example of mail()

2006-04-30 Thread JeRRy
Hi, Why not use cookies to check if the user has pressed F5 or refreshed the page? There is a number of ways to do this, all should work effectively depending on your how many people hit the page etc. a) Store the message in a cookie, and run PHP code to check before executing t

Re: [PHP-DB] grabbing data and auto email set users

2006-04-11 Thread JeRRy
Okay here is the full code. Now I got this code off a friend! In this first section to display the data that is grabbed from the db. ", $myrow[0]); } ?> It displays the data fine. Please note in the above there is more code and I doubt the issu

Re: [PHP-DB] grabbing data and auto email set users

2006-04-10 Thread JeRRy
?> BACK But when I check the db this is what I get. A new record created but username is blank. So it's creating a new record but leaving it blank, why? Now at times the record will insert more than one record, so I need it able to update more than one record at

Re: [PHP-DB] grabbing data and auto email set users

2006-04-10 Thread JeRRy
t off this also. So thankyou. J Chris <[EMAIL PROTECTED]> wrote: JeRRy wrote: > Okay, but still not working... > > is NULL the same as ' '? Or does NULL have to be the inserted value in > the db? Null means unknown - so completely different to ' ' or &#

Re: [PHP-DB] grabbing data and auto email set users

2006-04-10 Thread JeRRy
Okay, but still not working... is NULL the same as ' '? Or does NULL have to be the inserted value in the db? J Chris <[EMAIL PROTECTED]> wrote: JeRRy wrote: > Hi, > > Okay I played with the code a bit and ended up with this, it does NOT >

Re: [PHP-DB] grabbing data and auto email set users

2006-04-10 Thread JeRRy
http://pastebin.com/650846 J Chris <[EMAIL PROTECTED]> wrote: JeRRy wrote: > Hi, > > Okay I must be missing something here. > > I changed it to "mysql_query" and no errors produce however no emails > are sent either. After cross-checking b

Re: [PHP-DB] grabbing data and auto email set users

2006-04-09 Thread JeRRy
some eror recording to see where it's failing. I can't seem to get it to work, changed a heap of code but nothing budges. I can send the code I have and table structure if you want. J Chris <[EMAIL PROTECTED]> wrote: JeRRy wrote: > > Hi, > > I

Re: [PHP-DB] grabbing data and auto email set users

2006-04-09 Thread JeRRy
Hi, I used the following but got this error: Fatal error: Call to undefined function: db_fetch() in /home/tassie/public_html/tipping/admin/check.php on line 7 Any help please? J $query = "select * from users"; $result = mysql_query($query); while($row = db_fetch($result

[PHP-DB] grabbing data and auto email set users

2006-04-09 Thread JeRRy
Hi, No code here unless required. I run this tipping site. All user details are in a table called tipping which stores their id, username, password, email address, score and others. Than I have tables round 1 through to round 22. (all seperate tables) This is where users

Re: [PHP-DB] Messenger Question!

2006-04-05 Thread JeRRy
Thanks for your response :) Chris <[EMAIL PROTECTED]> wrote: JeRRy wrote: > > Not exactly a DB question but the storing will be done in a DB and using PHP. > > Anyways with the growing demand of IM's I want to add to my site easy access > for people contact me. I co

[PHP-DB] Messenger Question!

2006-04-04 Thread JeRRy
Not exactly a DB question but the storing will be done in a DB and using PHP. Anyways with the growing demand of IM's I want to add to my site easy access for people contact me. I could add my Yahoo! username for Yahoo! Messenger and MSN Messenger email address but I want to make it ea

Re: [PHP-DB] if() and else() help needed

2006-03-28 Thread JeRRy
e straight after it for the same result, So it double entries I persume. But what worry would this be? None I am guessing, it's just doing a double entry as long as the data is not lost. And only occours on entering tips for the first time. J Chris <[EMAIL PROTECTED]

Re: [PHP-DB] if() and else() help needed

2006-03-27 Thread JeRRy
and if never tipped it's blank. I think it should show that in the query. Cant remember, I did the scripts 2 or 3 years ago. Just want to tidy it up. J Chris <[EMAIL PROTECTED]> wrote: JeRRy wrote: > Hi, > > I'll admit it, this is damned messy. But I want to l

[PHP-DB] if() and else() help needed

2006-03-27 Thread JeRRy
Hi, I'll admit it, this is damned messy. But I want to learn from the list in how to sort it out. Than for future refrence I will know... Now I am running 2 different queries/statements here completely seperate. I have made the "nickname" field in the database UNIQUE. So than when

Re: [PHP-DB] Proper procedure to close mysql queries!

2006-03-21 Thread JeRRy
Thanks :) Chris <[EMAIL PROTECTED]> wrote: JeRRy wrote: > Hi Chris, > > Thanks for that, always wondered. So what does just using '?>' do than? > > Must close eventually but I am guessing by using that as a close the > connection times out after a set p

Re: [PHP-DB] Proper procedure to close mysql queries!

2006-03-21 Thread JeRRy
Hi Chris, Thanks for that, always wondered. So what does just using '?>' do than? Must close eventually but I am guessing by using that as a close the connection times out after a set period of time and the 'pid' is killed, correct? J ---chris said--- m

[PHP-DB] Proper procedure to close mysql queries!

2006-03-21 Thread JeRRy
Hi, Just need some mailing list input here, what is the proper way to close a mysql query using PHP. - What is the proper way to close a php query to mysql if one query is in the file? - What is the proper way to close a php query to mysql if 2 or more queries is in the file and wh

Re: [PHP-DB] Plain-text or HTML?

2006-03-13 Thread JeRRy
I have created several successful HTML and text based emails.. Its a secret called multipart MIME.The essence of email really. Just as an attachment is "embedded" into the same file as the images, html part and textual part. All you have to do is using 2 seperate boundaries

[PHP-DB] Plain-text or HTML?

2006-03-12 Thread JeRRy
Hello all, People on this list, is your email client plain-text or HTML supported? I think most email clients come with HTML support, but over the time I have done HTML emails they flop out and not display correctly. Is there a reason for this? Is there a way to send out HTML emails

[PHP-DB] Plain-text or HTML?

2006-03-12 Thread JeRRy
Hello all, People on this list, is your email client plain-text or HTML supported? I think most email clients come with HTML support, but over the time I have done HTML emails they flop out and not display correctly. Is there a reason for this? Is there a way to send out HTML emails

RE: [PHP-DB] Passwords

2006-03-12 Thread JeRRy
>>Sure, mysql.com and seasrch for crypt. Not sure why this is asked on a PHP list since it has nothing to do with PHP.> b) every language has a >>crypt function>Then I guess it's okay to have crypt questions/answers on >>"every >language" >list. >Then I guess i

[PHP-DB] Cut down threads please!

2006-03-12 Thread JeRRy
Hi, This is a "Discussion Board", previous threads/posts are logged, recorded, saved to the WWW. I see no point to continue threads over and over and over again. Why not cut the threads down to a few lines that are important to the reply your making? If people need to know more about it

[PHP-DB] RE: Adding time in php

2006-03-04 Thread JeRRy
Hi, All you need to do is run a query to your db to get the times. than use something like this: What this one does is count a total number of user on the website, than use factorA and multiplies that with factorB + a certain value. But this won't bring it in-line

[PHP-DB] re: slow page loading

2006-02-15 Thread JeRRy
or even a page not loading at all? Again ISP issue. Jerry

[PHP-DB] Re: slow loading page

2006-02-14 Thread JeRRy
Hi, Do this... 1) ping your local server. (paste us the results) 2) ping your IP address FOR THE SERVER (paste us the results) 3) If your server has a domain attached also ping this (paste us the results) Pointless? No... If you ping your local server with the localhost ip

[PHP-DB] re: (lost subject line)

2006-02-14 Thread JeRRy
Hi, Do this... 1) ping your local server. (paste us the results) 2) ping your IP address FOR THE SERVER (paste us the results) 3) If your server has a domain attached also ping this (paste us the results) Pointless? No... If you ping your local server with the localhost ip

[PHP-DB] RE: data picker

2006-02-13 Thread JeRRy
Use "getElementById" using javascript. >From: r0md0n1 <[EMAIL PROTECTED]> >To: php-db@lists.php.net >Subject: [PHP-DB] data picker >Date: Mon, 13 Feb 2006 17:00:11 +0700 > >hi all > >I'm trying to create a smalll application to pick data from pop-up >window into a form (like wh

Re: [PHP-DB] css #2

2006-02-09 Thread JeRRy
Hi, Honesty, no I have not ever heard of "floats" ... Well I have as in horse-floats but not for web-pages, I will search it up very soon. Thanks! Jerry Adrian Bruce <[EMAIL PROTECTED]> wrote: Jerry Not a php related question at all for starters but anywa

[PHP-DB] css #2

2006-02-09 Thread JeRRy
Okay I did some more surfing, on a VERY popular website used by neally a million users. I checked their CSS and they use px and pt meassurements. So maybe that is not my issue than. Maybe I don't have an issue to worry about? What are people's thoughts on this, all the input the better h

[PHP-DB] css

2006-02-09 Thread JeRRy
Hi everyone, I have created this website in PHP and mySQL at http://www.bps-testntag.com/ but have come accross an error I was not aware of before. Now I am using stylesheets and I have been surfing the net for about 90 minutes and yet to find a solution, so thought I'd post here, cou

RE: [PHP-DB] php/sendmail help!

2006-02-09 Thread JeRRy
order if (ereg("^[A-Z]{2}{0-9]{4}$",$_POST['postal'])){ ... As for pasting it back to the form, I would suggest you have the form as a function and the processing code as a function, then you can pass the post arrays back and forth and pass the error handling along with it B

RE: [PHP-DB] php/sendmail help!

2006-02-08 Thread JeRRy
Thanks for your help Bastien. I have it all working now, no problems. I also have generated a Unique ID for the form also. Jerry Bastien Koert <[EMAIL PROTECTED]> wrote: You are in serious need of some regex here...google email regex and you will have enough results to get yo

[PHP-DB] generating random id's

2006-02-08 Thread JeRRy
id's. It's using 32 chars. Jerry

[PHP-DB] php/sendmail help!

2006-02-06 Thread JeRRy
Hi, I have a form, form results are PUSHED to another page and processed. Files below. (in plain-tet) Now this is what I want to do: 1) Make all fields required input, but if easy to configure I want to have rules for each textarea. For instance an email address must contain a '@'

Re: [PHP-DB] screen resolution!

2006-02-06 Thread JeRRy
a program that re-does the HTML for the resolutions you set and bingo the results are spat out and you add it to the site and use a little script to redirect depending on their set resolution. Jerry PHP Superman <[EMAIL PROTECTED]> wrote: Or you can have a page which detects reso

[PHP-DB] screen resolution!

2006-02-04 Thread JeRRy
Hi, I have written a website in PHP using MYSQL. But I have come accross an un-common problem. Normally when I create a website it's done on a desktop PC. But this time for the first time I did it on laptop meaning the screen resolution is different. Is there any sort of script/co

Re: [PHP-DB] Help need please?

2006-01-24 Thread JeRRy
Hi, Thanks for this, got a few reposnses regarding this. This seems a more professional approach, I will try this and let you know about it when I do it. Thanks for your time. Jerry Ross Honniball <[EMAIL PROTECTED]> wrote: Get rid of both your onload= statemen

[PHP-DB] jscript question?

2006-01-23 Thread JeRRy
;Just when you thought you knew what testing and tagging was all about - along comes a book!" else if (inc==5) document.getElementById("fader").innerHTML="Memberships available" else if (inc==6) document.getElementById("fader").innerHTML="Are you really doing it right?" else{ document.getElementById("fader").innerHTML="<a href=order.php>Pre-order</a> and Save" inc=-1 } fadingtext() setTimeout("changetext()",8000) } window.onload=changetext end of text refreshing Any help would be awsome, or solutions? Jerry - Do you Yahoo!? Yahoo! Music: Check out the gig guide for live music in your area

[PHP-DB] Help need please?

2006-01-22 Thread JeRRy
u thought you knew what testing and tagging was all about - along comes a book!" else if (inc==5) document.getElementById("fader").innerHTML="Memberships available" else if (inc==6) document.getElementById("fader").innerHTML="Are you really doing it right?" else{ document.getElementById("fader").innerHTML="<a href=order.php>Pre-order</a> and Save" inc=-1 } fadingtext() setTimeout("changetext()",8000) } window.onload=changetext end of text refreshing Any help would be awsome, or solutions? Jerry - Do you Yahoo!? Messenger 7.0: Free worldwide PC to PC calls

[PHP-DB] Re: Refreshing text question!

2006-01-18 Thread JeRRy
d lots more. My first attempt at it would only output in plain text. What not ideal for this sort of site. Thanks for peoples assistance though, I am not sure what they call this sort of text refreshing. Jerry - Do you Yahoo!? Ya

Re: [PHP-DB] Refreshing text question!

2006-01-18 Thread JeRRy
4 235 749 494 [EMAIL PROTECTED] www.the-spectrum.org --oOo---oOo-- - Original Message - From: "JeRRy" To: Sent: Wednesday, January 18, 2006 11:51 AM Subject: [PHP-DB] Refreshing text question! > Hi, > > I did a little bit of script that refreshes a text

[PHP-DB] Refreshing text question!

2006-01-17 Thread JeRRy
Hi, I did a little bit of script that refreshes a text slogan every 5 or so seconds with a new slogans and wraps to each slogan, I had about 5, and loops over and over again. This was done WITHOUT the need of refreshing the page. I think I used JavaScript but not 100% sure of this. Has

[PHP-DB] [EMAIL PROTECTED]

2006-01-07 Thread JeRRy
Warning, this person is acting to own your email account server. He tries to pretend his from Yahoo!, Hotmail or any email account to see if your account is active for spam. I got his REAL email address because he messed up an email and put his real email address. I have confirmed from Hotmai

Re: [PHP-DB] Re: Subject: Scrolling News

2005-12-23 Thread JeRRy
Now, can you see the causes of these two errors... "A runtime error has occurred. Do you wish to Debug, Line: 20 Error: Expected "9" Are you using pine to edit? Or a HTML editior. If HTML or notepad you have the option of turning "wordwrap" on/off. Use this to find line number. With PH

[PHP-DB] Xmas countdown code help! (includes displaying images)

2005-12-22 Thread JeRRy
t;.gif\" alt=\""+alttag+"\" height=\"50\" width=\"125\"></a>"); } } placeimg(); //--> You can see the code working at http://www.getpaid2reademails.com/ Ignore the PHPSESSID. Also it currently

[PHP-DB] Re: SELECT & html

2005-12-04 Thread JeRRy
would use the SELECT command to do this?Ron [input] [input] [input] [input] [input] [input] [input] [input] Visit http://www.mysql.com/ and read a little bit about LIMIT command. :) Jerry - Do you Yahoo

[PHP-DB] Suggestions please!

2005-11-21 Thread JeRRy
Hi, Okay I have a dj site, I have alogin script and cookies to handle the login. Next I want to add some permissions for each dj account. Maybe 3 to start with, 3 permissions. A value or y or n will be set in each permission, with n being the default. Now I need to kno

[PHP-DB] PHP login with MYSQL Question?

2005-11-18 Thread JeRRy
Hi, Okay I created a user/pass login area. I created the following code. Now I want the secure area to send a cookie to the users PC we can track so I can make multiple pages without the need for the user to login to each page individually. I want to know what is the best method/code to

[PHP-DB] HTTP Auth help required, please?

2005-11-13 Thread JeRRy
tting. Thanks! Jerry - Do you Yahoo!? Listen to over 20 online radio stations and watch over 5000 music videos on Yahoo! Music.

[PHP-DB] HTTP Auth help required, please?

2005-11-13 Thread JeRRy
tting. Thanks! Jerry - Do you Yahoo!? Yahoo! Photos: Now with unlimited storage

[PHP-DB] Re: Login Auth help?

2005-11-10 Thread JeRRy
Hi, Well I tried this code but it fails, if I enter a correct User and Pass set in the db it just prompts for the user/pass again. The error message that should apply if wrong three times appears but the sucessful message I can't get regardless of correct user pass or not, any help please?

[PHP-DB] RE: Mailing List Question: Outlook Express

2005-11-10 Thread JeRRy
There doesn't seem to be a way to get a response from the mailing list owner (you just get an automated "Hey are you stupid?" response), so I'm posting this here. My appologies. Are there any plans to make your digests work with Outlook Express? Yes, I know it's old. Yes, I know it's broken

[PHP-DB] Login Auth help? | Handling pages help? (2 questions)

2005-11-09 Thread JeRRy
Hi, Need some ideas/opinions on a project I have. The project is for a Radio Station (online one) where DJ's can login to the site and do stuff and listeners can listen in live to the live feeds. Now I downloaded a password protected code that uses MySQL to store the info but it fails each

[PHP-DB] Login Auth help? | Handling pages help? (2 questions)

2005-11-09 Thread JeRRy
Hi, Need some ideas/opinions on a project I have. The project is for a Radio Station (online one) where DJ's can login to the site and do stuff and listeners can listen in live to the live feeds. Now I downloaded a password protected code that uses MySQL to store the info but it fails each

Re: [PHP-DB] RE: Basic SQLite test failing..

2005-10-31 Thread JeRRy
re's an entry under phpinfo()). Any ideas why it may be failing? Thanks again. On 10/30/05, JeRRy wrote: > > Hi, > > > > Errors are more than likely not being produced because of the '@' symbol. Try > removing this and see how you go. Also check y

[PHP-DB] RE: Basic SQLite test failing..

2005-10-30 Thread JeRRy
Hi, Errors are more than likely not being produced because of the '@' symbol. Try removing this and see how you go. Also check your code for syntax errors. These will be produced within the errors. J -start of message---

Re: [PHP-DB] µç×Ó´«µ¥,×îÁ®¼ ÛµÄÐû´«·½Ê½

2005-10-16 Thread JeRRy
Date:Sun, 16 Oct 2005 02:40:44 -0400From:"Alain Rivest" <[EMAIL PROTECTED]>To:"php-db@lists.php.net" Subject:Re: [PHP-DB] µç×Ó´«µ¥,×îÁ®¼ÛµÄÐû´«·½Ê½ KOKOµç×Ó´«µ¥ a ¨¦crit :>¹ýÁËÁ¼¾Ã£¬½û²»×¡´óÉù˵µÀ£º¡°ÉñÏÉæ¢æ¢£¬ÄãÈôÄÜ»î¹ýÀ´¸úÎÒ˵һ¾ä»°£¬ÎÒ±ãΪÄãËÀһǧ±é£¬Ò»Íò±é£¬Ò²ÈçÉíµÇ¼«ÀÖ£¬»¶Ï²ÎÞÏÞ¡£¡±

Re: [PHP-DB] PHP email client

2005-10-04 Thread JeRRy
"just a web page". sqirrelmail.org dbmail.org postfix.org sendmail.org mysql.com (everything can't be .org) Price: free On Oct 3, 2005, at 11:41 AM, JeRRy wrote: > Thanks Brent, > > Just for future refrence for this list if i look back on it or for > others interest as wel

RE: [PHP-DB] PHP email client

2005-10-04 Thread JeRRy
Hi, Never been to their website, comes in the CPANEL I use. I think that maybe it though, why? Jerry Bastien Koert <[EMAIL PROTECTED]> wrote: horde? www.horde.org bastien >From: JeRRy >To: php-db@lists.php.net >Subject: [PHP-DB] PHP email client Date: Mon, 3 Oct 2005

Re: [PHP-DB] PHP email client

2005-10-04 Thread JeRRy
Brent, Thanks for that I will look into SqirrelMail as that sounds like the one to go for. Thanks for your time also and assisting me. Jerry Brent Baisley <[EMAIL PROTECTED]> wrote: SqirrelMail is as customizable as you want, it's written in PHP and you get the source code. By

Re: [PHP-DB] PHP email client

2005-10-03 Thread JeRRy
code to it and be able to get basic info back from the email client to know who is logged in. Jerry Brent Baisley <[EMAIL PROTECTED]> wrote: SquirrelMail is used by a lot people and comes with a lot of systems (i.e. Apple Servers, Linux). It's not tied to any particular email server,

[PHP-DB] PHP email client

2005-10-03 Thread JeRRy
MAIL PROTECTED] it's going to have it's own domain. Something like rock.com would be fine. Thanks! Jerry - Do you Yahoo!? Find a local business fast with Yahoo! Local Search

[PHP-DB] RE: HTML Tables in PHP...

2005-09-25 Thread JeRRy
Hi, From: "Daryl Booth" <[EMAIL PROTECTED]>To:[EMAIL PROTECTED]:Sun, 25 Sep 2005 15:35:40 +0200Subject:HTML Tables in PHP... How can I give a with all of it's parameters in PHP in eachof the cells there is a variable that gives me the data back but I can't getth

[PHP-DB] Inputing a value into a image (?)

2005-08-02 Thread JeRRy
Hi, When I created a header image I made a mistake when I completed it and did not relise until some time after it. Now what has occoured is I through a value in the image instead of getting it to update from the database each time the page is loaded. What I want to do is rip out the value

[PHP-DB] .

2005-07-05 Thread JeRRy
Is there a way to "spoof" away php-db@lists.php.net who continues to send a virus via this mailing list. Why does this address need privlidges to send to the list anyway? The sender is using this to make it look like from the list but we all know it's fake. Well most do, I hope noone got caug

Re: [PHP-DB] Re: list test subject. .

2005-06-26 Thread JeRRy
;Martin Norland" <[EMAIL PROTECTED]>To:[EMAIL PROTECTED]:Re: [PHP-DB] Re: list test subject. . Plain Text Attachment [ Download File | Save to Yahoo! Briefcase ] [[[ O-F-F topic ]]]prefer replies offlist if they have to be done, but I had to clear the waters some on this.that said...Je

[PHP-DB] Re: list test subject

2005-06-25 Thread JeRRy
Date:Fri, 24 Jun 2005 18:07:26 +0200From:"Michelle Konzack" <[EMAIL PROTECTED]>To:[EMAIL PROTECTED]:Re: list test subject Plain Text Attachment [ Download File | Save to Yahoo! Briefcase ] Am 2005-06-25 00:26:13, schrieb JeRRy:> Obviously Michelle the instructions provid

[PHP-DB] Re: list test subject

2005-06-24 Thread JeRRy
Obviously Michelle the instructions provided with the subject "Re: list test subject" was for Windows users. Not that hard to figure out! But thanks for your smart, i think, response. Some emails maybe delayed due to DNS issues global. One instance was I sent an email this morning to a serv

[PHP-DB] re: list test subject

2005-06-23 Thread JeRRy
. If anyone else can bring light on this feel free to do so.

RE: [PHP-DB] Re: UPDATE command

2005-06-19 Thread JeRRy
I first learned this also I was fooled and used ' instead of `. But in some cases you don't need to use it also. I hope this covers it! Sorry if someone else has responded before me. I might of been a bit slow! ;) Jerry >From: "Ron Piggott" <[EMAIL PROTECTE

[PHP-DB] Re: Integrated Authentication on IIS 6.0

2005-05-24 Thread JeRRy
Hi,I have an intranet application that I wrote in PHP that has worked greatfor a long time. It uses integrated authentication in IIS. I'm trying tomigrate to IIS 6 and things are mostly working. The problem I have isthat my ODBC_CONNECT calls are not resulting in: "Login failed for user'(nu

[PHP-DB] Connection Question!

2005-05-17 Thread JeRRy
Hi, Okay lets say I own www.fred.com (which I don't but still) and www.getpaid2reademails.com (so I own two domain, lucky me!) Now I want to connect from getpaid to fred... Okay I have done this and achieved this but is it possible to reject this operation and deny connections outside of loc

[PHP-DB] Re: chat

2005-05-02 Thread JeRRy
From:"Patrick Dunegan" <[EMAIL PROTECTED]>To:[EMAIL PROTECTED]:Sun, 1 May 2005 08:22:58 -0500Subject:chat Does anyone know where there is a good chat room with PHP developers? -- No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.308 / Virus Database: 266.11.0 - Re

Re: [PHP-DB] Why not ?

2005-03-24 Thread JeRRy
--- "Larry E. Ullman" <[EMAIL PROTECTED]> wrote: > > Why does this NOT work? > > > > UPDATE tipping SET score = 3 WHERE round1.game1 = > H > > AND tipping.username = jerry; > > For starters, you should quote strings in a query. > Ther

[PHP-DB] Why not ?

2005-03-24 Thread JeRRy
Why does this NOT work? UPDATE tipping SET score = 3 WHERE round1.game1 = H AND tipping.username = jerry; Please inform? J 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

RE: [PHP-DB] Re: Handling database calculations with a php page

2005-03-22 Thread JeRRy
Thankyou :) --- Bastien Koert <[EMAIL PROTECTED]> wrote: > Yes, the 'a' value can also be a table alias name. > > Bastien > > >From: JeRRy <[EMAIL PROTECTED]> > >To: php-db@lists.php.net > >Subject: [PHP-DB] Re: Handling database > calculat

[PHP-DB] Re: Handling database calculations with a php page

2005-03-14 Thread JeRRy
Hi, So in other words when we are talking queries anything before a . for SELECT etc means table name and after the . means column name within that table? So... (table_name).(Column_name) ? Is that right? J Find local movie times and trailers on Yahoo! Movies. http://au.movies.yahoo.com --

[PHP-DB] Re: Handling database calculations with a php page

2005-03-13 Thread JeRRy
> What is the best PHP code to use for this inside a > PHP > code? I meant ... What is the best PHP code to use for this inside a PHP page/file. (e.g. calculate.php) Also the total of the 3 tables should than be updated to a 4th table which I did not mention. So the total of table 1, 2 and

[PHP-DB] Handling database calculations with a php page

2005-03-13 Thread JeRRy
Hello, 3 tables hold money value but they are inputed into the database without the dollar symbol (without $). So the value could be 3.00 etc... I want to calculate by adding (+) them together. A username is in each table. So only the username matching in each table must calculate. So if in

[PHP-DB] Re:data grabbing and mathematics!

2005-03-08 Thread JeRRy
date the right nickname. This would solve a bit of my time mucking around and re-structuring my database until I have more time. :) If you need more information please let me know. Jerry Find local movie times and trailers on Yahoo! Movies. http://au.movies.yahoo.com -- PHP Database Mailing

[PHP-DB] data grabbing and mathematics!

2005-03-07 Thread JeRRy
5 names max in each round to do totals for so it's not a huge database. Thanks for your time. 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] data grabbing and mathematics!

2005-03-07 Thread JeRRy
5 names max in each round to do totals for so it's not a huge database. Thanks for your time. 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: '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] 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: 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: 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

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

  1   2   3   >