Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Rhyan

  1. Rhyan

    Displaying Photos in MYSQL

    I have a table with Information on members of our club like Name, Age, City etc. Then I have a script that displays all the info. I'd like to be able to add each members photo so that it displays as well. Can someone tell me how to do it exactly. I tried php site, mysql site and several...
  2. Rhyan

    Mysql Update Script

    Hi, I am in need of someone to write a update script for a non profit online backgammon league I operate. From what I've discovered it would take about an hour to write for someone who knows MYSQL well. If anyone is willing to help me out and want to know more, please let me know here or at...
  3. Rhyan

    Computations and Evaluation

    Division (Assignments Page) People play people in Like Division 1 Match Only http://www.baaclub.com/League/divassignments.php3 This is where the Match results reside. 10 Pts is just an arbitrary number and is used to denote a single win. So if someone has 20, means they won 2 matches of the...
  4. Rhyan

    Computations and Evaluation

    Hi, Thanks for the reply. 1st. We have automated sign up in which they submit their player name and a password, email time zone etc. And when people play their matches (online at www.zone.com) they can report them at the league site and the form checks to make sure that the person claiming...
  5. Rhyan

    Computations and Evaluation

    Hi, I'm looking for some help with a project i'm working on to automate an online backgammon league for our club www.baaclub.com. Along with the help of a friend I was able to pretty much get it all going except for the automation of assignments into Divisions and the rearranging of players in...
  6. Rhyan

    Mail Function

    Hi, How can I format the Text in this function. For example, I'd like to have the Text Wrap, or at least know how to separate the text on different lines for longer emails. Any other email tips and suggestions would be greatly appreciated. I checked out the php.net site and didn't find it much...
  7. Rhyan

    Mail to ALL Addresses in MYSQL DB

    I read the manual but I didn't see how to do it as I said above, emailing all the names in a database, a single name I can do. Thanks
  8. Rhyan

    Mail to ALL Addresses in MYSQL DB

    How do I send an email to all the names in a database field entitled email?
  9. Rhyan

    Mailing to Names in MYSQL DB

    How do I send an email to all the names in a database field entitled email?
  10. Rhyan

    Displaying Results

    I think I remembered how to do it finally!!! SELECT * FROM pet WHERE name LIKE "b%";
  11. Rhyan

    Displaying Results

    I sort of figured that would be the way to go but the query has me stumped, not sure hwo to write it to draw records beginning with A in one table and Beginning with B in the other Select * FROM tablename Where ?? I had thought there was a way to draw records that begin with letters, not...
  12. Rhyan

    Displaying Results

    Using PHP/MYSQL, I am trying to display a table with 2 columns. Names that begin with aaa_ and that begin with bbb_, which are all together in a table field named Names so it'd look like this: __________________________ aaa_kdjkjf | bbb_ijkjeje | aaa_terem | bbb_imeeee | aaa_chack |...
  13. Rhyan

    Date

    Hmmm, I did as you said, but I still don't get a date value in the database upon form submission :-( <?php function user_logout() { setcookie('user_name','',(time()+2592000),'/','',0); setcookie('id_hash','',(time()+2592000),'/','',0); } include($DOCUMENT_ROOT.'/include/database.php3')...
  14. Rhyan

    Date

    Yes you are right, I viewed source and <Input type=hidden name=Joined value=&quot;August 25th 2000&quot;> And you are also correct that the Joined Field is of Date and is in this format 0000-00-00 I guess this explains why no info is being sent to db. Geeze, I thought this would something...
  15. Rhyan

    Date

    hmm, I tried it like you suggested, still no date value sent to the database. Heres the code I'm using now <?php $cur_date = date(&quot;F dS Y&quot;); function user_logout() { setcookie('user_name','',(time()+2592000),'/','',0); setcookie('id_hash','',(time()+2592000),'/','',0); }...

Part and Inventory Search

Back
Top