Search found 10 matches
- Sun Jan 30, 2005 7:46 pm
- Forum: General Discussion
- Topic: What music do you code by?
- Replies: 418
- Views: 144897
- Sat Jan 29, 2005 3:04 pm
- Forum: General Discussion
- Topic: Features YOU would like to see on a buddy profile type site
- Replies: 2
- Views: 6240
An example of the most popular buddy profile service is http://www.buddyprofile.com. A buddy profile is a link you would put in your Aol Instant Messenger profile so that you can have more than just text in your profile.
- Sat Jan 29, 2005 10:58 am
- Forum: General Discussion
- Topic: What's your favourite PHP Editor?
- Replies: 533
- Views: 235172
- Sat Jan 29, 2005 10:56 am
- Forum: General Discussion
- Topic: Features YOU would like to see on a buddy profile type site
- Replies: 2
- Views: 6240
Features YOU would like to see on a buddy profile type site
A friend and I, after being fed up with the lack of options and customization opurtunities with other Buddy Profile websites, decided to start our own. The name of our service is Pimpin Profilez - Let us Pimp your Profile . So far it features 10 customizable pages per user, customizable buddy polls ...
- Sat Jan 29, 2005 10:53 am
- Forum: Databases
- Topic: Pulling specific cell data from mySQL db
- Replies: 3
- Views: 995
- Sat Jan 29, 2005 9:55 am
- Forum: Databases
- Topic: Pulling specific cell data from mySQL db
- Replies: 3
- Views: 995
- Fri Jan 28, 2005 10:59 pm
- Forum: Databases
- Topic: Pulling specific cell data from mySQL db
- Replies: 3
- Views: 995
Pulling specific cell data from mySQL db
If i have a table, UserData, which columns userID username, password, title, email, title 1, title2, ... title 10, text 1, text 2, ... text 10 and the rows use userID as a primary identifier, how would i reteive data from say userID #7, and from the title10 column?
- Fri Jan 28, 2005 10:31 pm
- Forum: PHP - Code
- Topic: my sql questions
- Replies: 5
- Views: 1091
for anyone who has this same problem, i solved it... Here is the code that WORKS
Code: Select all
mysql_query("UPDATE UserData SET title1='$title1', text1='$text1' WHERE userID='$userID'");- Fri Jan 28, 2005 4:25 pm
- Forum: PHP - Code
- Topic: my sql questions
- Replies: 5
- Views: 1091
- Thu Jan 27, 2005 9:27 pm
- Forum: PHP - Code
- Topic: my sql questions
- Replies: 5
- Views: 1091
my sql questions
I am attempting to make my own buddyprofile.com thing i have a mySQL table thats set up with userID as the primary key and its increasing by 1 every time i add another user. Login and register both work. But when i try to add data to those tables later, i get really lost. My currenty code is set lik...