RE: [PHP-DB] Pear with PHP

2003-02-19 Thread Clarkson, Nick
Start here - http://pear.php.net/packages.php. I'm only just looking at it myself, but the docs are on there too. Good luck Nick -Original Message- From: Neil [mailto:[EMAIL PROTECTED]] Sent: 19 February 2003 11:09 To: [EMAIL PROTECTED] Subject: [PHP-DB] Pear with PHP Hi, How do

RE: [PHP-DB] Pear with PHP

2003-02-19 Thread Clarkson, Nick
Sorry, should have been more specific with my last reply; Base PEAR package - http://pear.php.net/package-info.php?pacid=14 Additional packages - http://pear.php.net/packages.php Sorry about that. Nick -Original Message- From: Neil [mailto:[EMAIL PROTECTED]] Sent: 19 February 2003

RE: Re[2]: [PHP-DB] More help with mysql -- solved (bizarre)

2003-02-18 Thread Clarkson, Nick
I believe if you put OR instead of || it will work OK as originally posted.. ie mysql_query(SELECT * FROM SOME_TABLE) OR die( Nick -Original Message- From: Max 'AMiGo' Gashkov [mailto:[EMAIL PROTECTED]] Sent: 18 February 2003 08:42 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]

RE: [PHP-DB] Session variables when global variables switched off [Sorry, firs t message accidentally fired off to quickly ]

2003-02-18 Thread Clarkson, Nick
Try changing your code to if ($_SESSION['verified'] != yes){ I think that's the problem Nick -Original Message- From: Baumgartner Jeffrey [mailto:[EMAIL PROTECTED]] Sent: 18 February 2003 11:20 To: '[EMAIL PROTECTED]' Subject: [PHP-DB] Session variables when global variables

RE: [PHP-DB] Preserving form field values between pages/tags

2003-02-18 Thread Clarkson, Nick
Here's an example to get you started - created 2 files as below, 1.html and 2.php The important bit is value=?php echo $_POST['username'];? Nick FILE : 1.html html form action=2.php method=post input type=text name=username size=40 maxlength=256 input type=submit value=submit /form /html

RE: [PHP-DB] MySQL problem -- new to PHP

2003-02-13 Thread Clarkson, Nick
Looks like is to do with MySQL permissions. Check your host's (the one you are trying to connect from) permissions to the server. To change permissions, from the MySQL prompt type; GRANT ALL ON * TO username@host IDENTIFIED BY password; Substitute in username, host and password for your ones.

RE: [PHP-DB] MySQL problem -- new to PHP

2003-02-13 Thread Clarkson, Nick
:[EMAIL PROTECTED]] Sent: 13 February 2003 14:01 To: Clarkson, Nick Subject: Re: [PHP-DB] MySQL problem -- new to PHP Well you opened up my question! Do you know where to learn PHPMyAdmin? Thanks in advance, Mark Clarkson, Nick wrote: Looks like is to do with MySQL permissions. Check your host's