[PHP-DB] Adding in MySQL

2003-11-11 Thread Dillon, John
Can I UPDATE an int record with MySql and add 1 to it? without extracting it into a variable first? If so, what am I looking for in the www.mysql.com manual. Seems it only deals with SELECT and WHERE. Thanks, John    

[PHP-DB] Re: Adding in MySQL

2003-11-11 Thread David Robley
In article [EMAIL PROTECTED] , [EMAIL PROTECTED] says... Can I UPDATE an int record with MySql and add 1 to it? without extracting it into a variable first? If so, what am I looking for in the www.mysql.com manual. Seems it only deals with SELECT and WHERE. Thanks, John UPDATE table

[PHP-DB] Paradox tables

2003-11-11 Thread Rosen
Hi, Is there a way with PHP to process data from Paradox tables ? Thanks, Rosen -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Paradox tables

2003-11-11 Thread jeffrey_n_Dyke
if you can connect via odbc, you can use php with it. i just googled - paradox, database, php and the first link will answer your question. ps. Rosen your email bouncesunknown user. error -- 550 5.1.1 [EMAIL PROTECTED]... User unknown hth jeff - Forwarded by Jeffrey N Dyke/CORP/Keane

Re: [PHP-DB] Paradox tables

2003-11-11 Thread Rosen
Thanks, I need someone, who created this to know is this reliable ( I mean Paradox PHP ) Thanks, Rosen Jeffrey N Dyke [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] if you can connect via odbc, you can use php with it. i just googled - paradox, database, php and the first link

Re: [PHP-DB] Adding in MySQL

2003-11-11 Thread John W. Holmes
Dillon, John wrote: Can I UPDATE an int record with MySql and add 1 to it? without extracting it into a variable first? If so, what am I looking for in the www.mysql.com manual. Seems it only deals with SELECT and WHERE. Would have taken you two seconds to actually try this... UPDATE Table SET

[PHP-DB] about some MySQL basics

2003-11-11 Thread Koala Yeung
Maybe tis a little bit out of topic... I want to learn using PHP with MySQL. After long time reading, I still have no idea how to build a database on a remote computer How to create a MySQL database on a remote server on the internet? -- PHP Database Mailing List (http://www.php.net/) To

RE: [PHP-DB] about some MySQL basics

2003-11-11 Thread Hutchins, Richard
A VERY, VERY quick list of some resources that may help you out. There are many more. Excellent starter's book by Kevin Yank is available here: http://www.sitepoint.com/article/228 When I first started, I used it and had stuff up and running in an hour. Also, look on Amazon for PHP and MySQL

[PHP-DB] Re: Adding in MySQL

2003-11-11 Thread Neil Smth
UPDATE fieldname SET fieldname=fieldname+1 WHERE where condition Make sure to have a WHERE condition, or you will update all the 'fieldname' entries in your table - you have been warned. PS - Didn't look very hard on mysql.com, did you ;-p PPS - Please can you stop posting 40 empty lines to the