RE: [PHP-DB] Images donot appear

2001-04-09 Thread Corin Rathbone

If you are using windows,
Uncomment (un ;) the following line in php.ini
extension=php_gd.dll

Regards,
Corin Rathbone
[EMAIL PROTECTED]

-Original Message-
From: Sharmad Naik [mailto:[EMAIL PROTECTED]]
Sent: 08 April 2001 18:44
To: [EMAIL PROTECTED]
Subject: [PHP-DB] Images donot appear


Although i have compiled php with gd i don't get image do i have to make
any changes in php.ini

-Regards
--
The secret of the universe is @*!'^#+ NO CARRIER
___  _  _  _
|_|_||_||_||\/||_|| \
_|| || || \|  || ||_/

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DB] Call to undefined function: mysql_pconnect()

2001-04-09 Thread Bruno

Hello,

I am getting this error when I run a program that tries to access a mySQL DB
trough PHP4. I've read that this error appears when the module for mySQL
isn't present. I have this module here :

/usr/lib/php4/extensions/mysql.so

And on my /etc/php4/apache/php.ini, I have the following :

extension_dir   =   /usr/lib/php4/extensions/
extension=mysql.so

¿Can anyone help me?

Thank You

Bruno




-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DB] Call to undefined function: mysql_pconnect()

2001-04-09 Thread B. van Ouwerkerk


I am getting this error when I run a program that tries to access a mySQL DB
trough PHP4. I've read that this error appears when the module for mySQL
isn't present.

A bit of code could help.. if it's caused by the wrong .so, you could try 
what happens if you compily PHP with the .so from the mysql source..

I would take a look at the code first.. perhaps try an example.

Bye,


B.




-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP-DB] overrun??

2001-04-09 Thread Ben Cairns

Closing a MySQL connection is a good habit to get into,

However, what you describe, doesn't sound like a PHP error, it may just be one 
of the many errors with msie rearing its head.


-- Ben Cairns - Head Of Technical Operations
intasept.COM
Tel: 01332 365333
Fax: 01332 346010
E-Mail: [EMAIL PROTECTED]
Web: http://www.intasept.com

"MAKING sense of
the INFORMATION
TECHNOLOGY age
@ WORK.."


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: RE: [PHP-DB] overrun??

2001-04-09 Thread Russ Michell

Cheers Ben.

However if I close a connection, how is it possible to reconnect if the 
connection needs to be reused, i.e if further DB data is requested? Is 
it just a matter if refreshing the page and it all resets??

Russ

#---#

 "Believe nothing - consider everything"

  Russ Michell
  Anglia Polytechnic University Webteam
  www.apu.ac.uk/webteam
  [EMAIL PROTECTED]
  +44 (0)1223 363271 ext 2331
  
  www.theruss.com

#---#


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DB] overrun??

2001-04-09 Thread B. van Ouwerkerk


I use PHP4pl1 with MySQL 3.22.32

That's OLD. 3.23.36 is current.

Does other connects run without a problem? like with other databases??

If not, try what happens if you upgrade mysql to current and recompile 
PHP.. please, use the right API version.. I always prefer to use the one 
that comes with MySQL..

There are a few problems with a few versions MySQL in the 3.22 versions.. 
don't know of the top of my head which version and which problem.

Another thing: try to use it with a known good script.. or try a tutorial.. 
depends a bit on your own expertise..

Bye,


B.


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DB] overrun?

2001-04-09 Thread Russ Michell

Whoa there!!

It's no *BIG* deal! It all works fine I just wondered why the connecton 
seemed to linger a little longer than it should!
I'll go with Ben's idea and close off the connectons at the bottom of 
my script. As for using a new version of MySQL - what's the point? It 
works fine. I can insert, select and update - all fine. WHy on earth 
would I want to upgrade to a new version which would prob take me all 
day, maybe crash the server on which several important websites sit on, 
and is generally more hassle than it's worth.

If it aint broke - don't fix it.

Cheers for your ideas folks.

Russ

#---#

 "Believe nothing - consider everything"

  Russ Michell
  Anglia Polytechnic University Webteam
  www.apu.ac.uk/webteam
  [EMAIL PROTECTED]
  +44 (0)1223 363271 ext 2331
  
  www.theruss.com

#---#


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DB] Eval statement

2001-04-09 Thread John

Hello,

Eval must be a statement, not an expression.

eval("\$result=$number1+$number2;");
print $result;

John

""Bartek Pawlik"" [EMAIL PROTECTED] wrote in message
003101c0c0d6$48546a40$539f4dd5@administrator">news:003101c0c0d6$48546a40$539f4dd5@administrator...
Hi,
Sorry, but it's no connected with PHP+DB, but I can't find answer enywhere

Supouse I have

$number=123;
what i want is
eval ("$kg"+$number) and print it.

PS. $number takes different values;

Thanks in advance
Bartek Pawlik
Poland



--




-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DB] Re: PostgreSQL versus MySQL

2001-04-09 Thread Bob Hall

On Sun, 8 Apr 2001, Bob Hall wrote:

   Doug,
  
   You've posted your usual good sense, combined with one statement I
   strongly disagree with.
  
   One of
   these products is a relational database management system.  The other is a
   quasi-SQL-like-front-end-to-systems-of-indexed-files that has never
   concerned itself with things like standards conformance.
  
   The implication is that MySQL is not an RDBMS. The only attempt I
   know of to define an RDBMS was Codd's, and no DBMS has ever met the
   criteria he published in a paper in the late 80s (1986?). Even though
   Oracle doesn't meet the criteria of the best known definition (only
   definition?) of an RDBMS, we all seem to agree that Oracle is an
   RDBMS. An RDBMS is a DBMS designed to manage a relational database,
   and a database is relational because it stores data in linked,
   normalized tables.

The only thing I question in this is that without transaction support,
what exactly is MySQL "managing"?

The data in the normalized tables.

  MySQL is providing an SQL frontend to a
bunch of tables and indices, that is it ... it is up to the programmer to
handle the "managing of data" part where it revolves around being
relational ...

I've developed database apps in which the data was inserted in 
batches, which meant that transactions were unnecessary. On the other 
hand, the apps needed an RDBMS to handle normalized tables.


Also, note, that even today, MySQL does not handle transactions, Berkeley
DB does, and its purely optional, and per table.  So, effectively, it has
"transactional tables", its not a "transactional system" ... if you didn't
define a table for transactions when you created it, you just created your
weak link ... again, its not MySQL that manages the system, its the
programmer who has to do it ... *shrug*

Transactions have to do with the environment the DBMS operates in, 
not the type of database. Relational database theory was developed 
when multi-user OSs were still pretty new, and database processing 
was batch processing. In that type of environment, ACIDity isn't an 
issue. In an OLTP environment, even OODBMSs have to deal with 
transactions. At the same time, the lack of transaction support 
doesn't disqualify an OODBMS from being object oriented.  Futhermore, 
some datawarehousing and web projects involve relational databases 
that are inserted and updated in batches at night, making 
transactions unnecessary.

I'm not trying to claim that MySQL can handle all types of db 
applications. MySQL is a niche product that was never designed to 
handle certain types of applications. My point is that whether a DBMS 
is relational depends on the structure of the data it deals with. 
Whether it needs to support transaction depends on the environment it 
operates in. I think that your point is that in an OLTP environment, 
lack of transaction support screws up the data to the point that the 
database becomes useless. I agree, but not all RDBMSs operate in an 
OLTP environment.

Bob Hall

Know thyself? Absurd direction!
Bubbles bear no introspection. -Khushhal Khan Khatak

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DB] Re: PostgreSQL versus MySQL

2001-04-09 Thread The Hermit Hacker

On Mon, 9 Apr 2001, Bob Hall wrote:

   MySQL is providing an SQL frontend to a
 bunch of tables and indices, that is it ... it is up to the programmer to
 handle the "managing of data" part where it revolves around being
 relational ...

 I've developed database apps in which the data was inserted in
 batches, which meant that transactions were unnecessary. On the other
 hand, the apps needed an RDBMS to handle normalized tables.

Okay, so you start the insert, and one of the records in the batch failed
to insert ... then what?  You manually rollback the other ones?  A
"transaction" is effectively a batch ... if one of the batch fails, either
the programmer has to manually remember and roll everything back, or you
let the database itself handle it ..

 Futhermore, some datawarehousing and web projects involve relational
 databases that are inserted and updated in batches at night, making
 transactions unnecessary.

See above ... I have an application that loads ACT! data into a database
every night ... each contact in the system has something like 20-30 fields
associated with them ... if, for some reason, *one* of those fields fail
to insert properly, that contact is invalid, and the transaction that its
wrap'd in automatically rolls back everything I've done since the start of
the transaction, so that there is no record of that failed contact except
in my error log file ... no "incomplete" data, no stray data ...

batch or interactive doesn't matter ... its the data integrity that is
maintained by using transactions that is key ...

 I'm not trying to claim that MySQL can handle all types of db
 applications. MySQL is a niche product that was never designed to
 handle certain types of applications. My point is that whether a DBMS
 is relational depends on the structure of the data it deals with.
 Whether it needs to support transaction depends on the environment it
 operates in. I think that your point is that in an OLTP environment,
 lack of transaction support screws up the data to the point that the
 database becomes useless. I agree, but not all RDBMSs operate in an
 OLTP environment.

No, my point is that in any environment that needs the features of being
"relational" (data spread across multiple tables, link'd together), IMHO,
transactions are required in order to maintain data integrity *unless* the
programmer himself wants to take it upon himself to maintain this data
integrity in the application layer ...

... if data in table C requires that the data saved to table B was stored,
then if table B fails, the transaction should fail and the changes to
table A should be reversed automatically ... *shrug*  By extension, if the
data to table C fails for whatever reason, the data put to Tables A and
B should be automatically reversed ...





-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DB] Separating paragraphs in mySQL?

2001-04-09 Thread sam

Hello,

I have this field filled up from within a text area. Something the same as
that on message boards but something that has more characters in it. I have
it set to get up to 1500 characters.

My main problem is that although I tried inserting separate paragraphs (by
pressing the return/enter key when every paragraph gets finished), when I
tried viewing them on PHP pages, they still show as one whole paragraph
without any line breaks (\n).

My question, how can I save the entries on the database and still show the
"\n" or next lines, thus being able to separate different paragraphs from
each other.

thanks in advance.

the.sam



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Odp: [PHP-DB] Re: PostgreSQL versus MySQL

2001-04-09 Thread Jarek Zgoda

Od: "Bob Hall" [EMAIL PROTECTED]
Temat: Re: [PHP-DB] Re: PostgreSQL versus MySQL


The implication is that MySQL is not an RDBMS. The only attempt I
know of to define an RDBMS was Codd's, and no DBMS has ever met the
criteria he published in a paper in the late 80s (1986?). Even though
Oracle doesn't meet the criteria of the best known definition (only
definition?) of an RDBMS, we all seem to agree that Oracle is an
RDBMS. An RDBMS is a DBMS designed to manage a relational database,
and a database is relational because it stores data in linked,
normalized tables.
 
 The only thing I question in this is that without transaction support,
 what exactly is MySQL "managing"?

 The data in the normalized tables.

Of 12 Codd's rules (1985), MySQL doesn't meet four:
5 - full internal language implementation with transactional processing
support;
6 - using views for data modification;
10 - autonomous referential integrity mechanism built into database;
11 - autonomous data distribution.
Of SQL-92 instructions MySQL doesn't implement following:
CREATE | DROP SCHEMA, DECLARE LOCAL TEMPORARY TABLE, CREATE | ALTER | DROP
DOMAIN, CREATE | DROP CHARACTER SET, CREATE | DROP COLLATION, CREATE | DROP
TRANSLATION, CREATE | DROP VIEW, ALLOCATE | DECLARE | OPEN | CLOSE CURSOR,
COMMIT, ROLLBACK, FETCH, CLOSE, CREATE | DROP ASSERTION, SET CONSTRAINTS
MODE, SET SESSION AUTHORIZATION, SET TRANSACTION MODE, SET NAMES, SET
SCHEMA, SET TIME ZONE, ALLOCATE | SET | GET | DEALLOCATE DESCRIPTOR,
DESCRIBE, PREPARE, DEALLOCATE PREPARE, EXECUTE, EXECUTE IMMEDIATE, GET
DIAGNOSTICS
This set is about 85% of SQL-92 standart, but i didn't see any DBMS that
implements that all.
Of SQL-92 keywords, about 65% is absent in MySQL, but they are not too often
used even if they are present with significant exception of trigger and
procedural language.

Cheers
Jarek Zgoda



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DB] php/mysql error

2001-04-09 Thread Liz Bander

This is the error that I've gotten since I switched servers a week-ish 
ago.  No idea why, doesn't make any sense to me.  I'm running MySQL 3.23 
and the latest versions of Apache and PHP.  We used the nusphere install.

Warning: Supplied argument is not a valid MySQL result resource in 
/usr/local/nusphere/apache/htdocs/ese-lab/Protect/add.php3 on line 162

Any ideas??? Thanks!!!

Liz Bander

This is the function that it's in:

#==

# sub main() {


   if ($cancel != '') {
 include '../Include/conf.inc';
 header("Location: http://$WEB_SERV/$WEB_SITE" . "search.php3");
 exit;
   } elseif ($save != '') {
 include '../Include/conf.inc';
 $err_str = validate();
 if ($err_str == '') {
   add_log_entry($bcode);
   $message = write_to_db($bcode);
   #$A($message);
   exit;
 } else {
   if (substr($err_str, -1, 1) != '!') {
 $conflict_code = substr($err_str, -11, 10);
 $err_str = $err_str . " a 
href='box_edit.php3?bcode=$conflict_codedb=yesgoto=" . urlencode($goto) . 
"'--/a";
   }
 }
   } else {
 include '../Include/conf.inc';
 $cd_qry = "select max(code) from equipment";
 connecttodb();
 $result = mysql_query($cd_qry);
LINE 162$temp = mysql_fetch_row($result);
 $bcode = $BCODE_START . str_pad((substr($temp[0], -6) + 
1),6,'0',STR_PAD_LEFT);
   }

   include '../Include/ip_crd_tbl.inc';
   include '../Include/show_list.inc';

#==


[PHP-DB] Re: installation blues with oracle 8i

2001-04-09 Thread Brian.J.Mauter

On your configure script try this:

./configure --with-oci=/path/to/your/oracle/installation/home

I think your PHP configure script still cannot find the Oracle home
directory (have you set ORACLE_HOME in your environment?).

Good luck,


Brian Mauter
[EMAIL PROTECTED]



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DB] Help please

2001-04-09 Thread Indri

It's best if you can supply the full code. Code may not need to be attached,
you can just put in a text file and send the link so that we all can read.
Error in line 42 DOES NOT mean the error is in line 42, sometimes the error
can be in the couple of lines before line 42.

Best wishes,
Indri
-- 
Aletia Hosting - Full-Featured, Superfast Web Hosting
PHP, MySQL, Perl, multiple domain support and more.
Plans start at $9.95/mth for 200MB + 10GB Transfer
http://AletiaHosting.com - AIM: AletiaSales

 From: [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 Date: Mon, 9 Apr 2001 18:15:52 -0500
 To: [EMAIL PROTECTED]
 Subject: [PHP-DB] Help please
 
 Hi all,
 
 I have a website that I am trying to develop a "add news" page for.
 Basically people who have the authority to add news for the site can type in
 their username, password, the title of the article, and the article itself
 and submit it to the site (which then verifies the username and password and
 if successfull adds it to the DB so the news will appear the next time
 somone browses to the website.
 
 This file is an included file into the main page...the $db variable is
 valid, and works with all the other pages so far... I am really stumped and
 getting frustrated.
 
 I apologise in advance if I am including too much code in my examplethe
 place with the error is a couple lines from the bottom of the code sample.
 
 
 My problem is that I am getting an error when i try to submit the form, code
 sample is below.
 
 The error is:
 
 Warning: Supplied argument is not a valid MySQL-Link resource in
 /usr/www/kyid/public_html/addnews.php on line 42
 
 
 
 ?php
 $size=20;$cols=46;
 echo "div align=\"center\"";
 if(!$submit){
 echo "form method=\"post\" action=\"addnews.php\"\n";
 echo "tabletrtdnbsp;/td/td/table\n";
 echo "table width=\"450\" border=\"0\" cellspacing=\"1\"
 cellpadding=\"2\" align=\"center\"\n";
 echo "tr valign=\"top\"\n";
 echo "td bgcolor=\"#6A7292\" class=\"text\"* UserNamebr\n";
 echo "input type=\"text\" name=\"uname\" class=\"input\"
 maxlength=\"20\" size=\"".$size."\" value=\"\"\n";
 echo "br\n";
 echo "/td\n";
 echo "td bgcolor=\"#6A7292\" class=\"text\"* Passwordbr\n";
 echo "input type=\"password\" name=\"password\" class=\"input\"
 size=\"".$size."\" value=\"\"\n";
 echo "/td\n";
 echo "/tr\n";
 echo "tr valign=\"top\"\n";
 echo "td bgcolor=\"#565d77\" class=\"text\"* Headlinebr\n";
 echo "input type=\"text\" name=\"headline\" class=\"input\"
 maxlength=\"40\" size=\"".$size."\" value=\"\"\n";
 echo "br\n";
 echo "/td\n";
 echo "/tr\n";
 echo "tr valign=\"top\"\n";
 echo "td colspan=\"2\" bgcolor=\"#565d77\" class=\"text\"*
 Storybr\n";
 echo "textarea name=\"newstext\" cols=\"".$cols."\"
 wrap=\"VIRTUAL\" rows=\"10\" class=\"input\"/textarea\n";
 echo "/td\n";
 echo "/tr\n";
 echo "tr valign=\"top\"\n";
 echo "td bgcolor=\"#7B819A\" align=\"center\"
 colspan=\"2\"\n";
 echo "input type=\"submit\" name=\"submit\" value=\"Add
 Article\" class=\"submit\"input type=\"reset\" name=\"reset\"
 value=\"Clear\" class=\"submit\"\n\n";
 echo "/td\n";
 echo "/tr\n";
 echo "/table/form\n";
 }else{
 /* More stuff would go in here, but this isn't working. */
 / THE LINE BELOW THIS IS THE ERROR LINE /
 $validate = mysql_query("SELECT username, user_password FROM users
 WHERE username=".$uname,$db);
 }
 echo "/div";
 
 Thanks in advance for any help, or please let me know if this should be on
 php-general instead...
 
 Again, thanks
 Keith Young.
 
 
 -- 
 PHP Database Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]
 


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DB] 2-Table query

2001-04-09 Thread Randall Barber

I would like to update two tables at the same time.

Currently I update each one separately, like so,

$qryStr = "INSERT INTO table1 etc";
odbc_exec($dbConn, $qryStr);

$qryStr = "INSERT INTO table2 etc";
odbc_exec($dbConn, $qryStr);

Now, the problem there is if the first one passes, but the second fails, if the user 
tries to re-submit, the first now fails because of a primary key clash which is right, 
but then never executes the second one.

This is what I THINK I should do,

$qryStr = "(INSERT INTO table1 ( col1, col2 ) VALUES ( '$val1', '$val2' ) ) AND 
(INSERT INTO table2 ( col1, col2 ) VALUES ( '$val1', '$val2' ) )";
odbc_exec($dbConn, $qryStr);

Any ideas are appreciated... I am not experienced with SQL query precedences, or 
operators, etc...  A good reference for that very thing would be nice.
Thanks in advance,
RDB



[PHP-DB] Back up database.....

2001-04-09 Thread E K L

Hi all,

   I'm having this problem in backuping my database which is in Mysql from 
one server to another server. The servers are in different location and 
having different ip address. So, can any one come to me and consult?
Your help is much appreciate, thank you

E K
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DB] Back up database.....

2001-04-09 Thread John Starkey

I'm on Linux and Unix and I just run a cron job each night to tar and gzip
the datadirs. Then I use rsync tunneled thru ssh to sync the remote and local
files.

I couldn't tell you how to do it one Windoze though.

Hope this helps.

E K L wrote:

 Hi all,

I'm having this problem in backuping my database which is in Mysql from
 one server to another server. The servers are in different location and
 having different ip address. So, can any one come to me and consult?
 Your help is much appreciate, thank you

 E K
 _
 Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

 --
 PHP Database Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DB] Soap in php

2001-04-09 Thread Rob Wheeldon

Anyone here know of a good php soap tutorial? I have tried the one at
gigatrends, but had no luck



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DB] Robust OO Shopping Cart 4 sale

2001-04-09 Thread Rob Wheeldon

Hello all,
PHP\MySQL shopping cart for sale www.firegarden.com/cart/ still under
development (good price if you buy now). Top notch OO coding garenteed. go
to firegarden.com and click the email link for more info.
Rob



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DB] Back up database.....

2001-04-09 Thread E K L

Ok, thanks for ur suggestion...But, can u explain in more detail on how 
those command works? thanks


From: John Starkey [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: E K L [EMAIL PROTECTED]
CC: [EMAIL PROTECTED]
Subject: Re: [PHP-DB] Back up database.
Date: Mon, 09 Apr 2001 21:39:32 -0600

I'm on Linux and Unix and I just run a cron job each night to tar and gzip
the datadirs. Then I use rsync tunneled thru ssh to sync the remote and 
local
files.

I couldn't tell you how to do it one Windoze though.

Hope this helps.

E K L wrote:

  Hi all,
 
 I'm having this problem in backuping my database which is in Mysql 
from
  one server to another server. The servers are in different location and
  having different ip address. So, can any one come to me and consult?
  Your help is much appreciate, thank you
 
  E K
  
_
  Get Your Private, Free E-mail from MSN Hotmail at 
http://www.hotmail.com.
 
  --
  PHP Database Mailing List (http://www.php.net/)
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
  To contact the list administrators, e-mail: [EMAIL PROTECTED]


_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DB] Back up database.....

2001-04-09 Thread E K L

HI John,

  Thanks for ur prompt reply.Actually, i'm facing the setting crontab 
problem as wellI posted the question to ask advice at the same time i 
asked u the backuping processBelow is the mail i have when the schedule 
failed:

your terminal lacks the ability to clear the screen or position the cursor

What's the problem? Please help thanks


E K
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]