Search found 10 matches

by crazyb8ss
Sun Jan 30, 2005 7:46 pm
Forum: General Discussion
Topic: What music do you code by?
Replies: 418
Views: 144897

'Queen - Bohemian Rhapsody', 'Daughters - Nurse, Would you please prepare the patient for sexual doctor', 'Skindred - Nobody', and 'Greenday - Boulevard of Broken dreams'
by crazyb8ss
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.
by crazyb8ss
Sat Jan 29, 2005 10:58 am
Forum: General Discussion
Topic: What's your favourite PHP Editor?
Replies: 533
Views: 235172

I use PHP Designer 2005, it has syntax highliting for PHP, HTML, CSS, JS, and many forms of SQL. It also features a debugging feature which i find handy. It has a "tabbed" browsing feel to it so its easy to switch back and forth between files.
by crazyb8ss
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 ...
by crazyb8ss
Sat Jan 29, 2005 10:53 am
Forum: Databases
Topic: Pulling specific cell data from mySQL db
Replies: 3
Views: 995

after reading a section of the book that originally taught me php i solved the problem. I wwas unaware that the sql data could be outputted to an array
by crazyb8ss
Sat Jan 29, 2005 9:55 am
Forum: Databases
Topic: Pulling specific cell data from mySQL db
Replies: 3
Views: 995

read? whats that? nobody reads anymore :lol:
by crazyb8ss
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?
by crazyb8ss
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'");
by crazyb8ss
Fri Jan 28, 2005 4:25 pm
Forum: PHP - Code
Topic: my sql questions
Replies: 5
Views: 1091

so should my query look like this:
UPDATE UserData SET title1=$title1 WHERE userID=$userID
or what
by crazyb8ss
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...