Re: [PHP-DB] Changing data in a table From: Philip Olson (philip <email protected>)
Date: 11/18/00

Jeff-

Read that post I sent and the linked tutorials, they will help you
accomplish this. But in short :

update.php?username=billy

UPDATE atable
SET something = 'yes'
WHERE username = '$username'

This will change billy's something record from whatever to yes. See :

   http://sqlcourse.com/update.html

Check out them tutorials! Here is one of them which is pretty example
rich :

   http://php.vamsi.net/mysql/index.php

Have great day,

Philip

--
be outside the box.

On Sat, 18 Nov 2000, Jeof Oyster wrote:

> Thanks for the help from "selecting a specific record from..." > > Got another question. Using PHP, how do you change the information that > is in a specific record in a table. Basically, we need to change the > data for a field for a specific record (a username) from No to Yes or > Yes to No. How do you actually change the data that already exists? > > Thanks! > > Jeof Oyster > Top Flight Leadership > > PS- Can you hit Reply to All so that it goes to me and the newsgroup? > Thanks!! > > > -- > PHP Database Mailing List (http://www.php.net/) > To unsubscribe, e-mail: php-db-unsubscribe <email protected> > For additional commands, e-mail: php-db-help <email protected> > To contact the list administrators, e-mail: php-list-admin <email protected> >

-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-db-unsubscribe <email protected> For additional commands, e-mail: php-db-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>