Results 1 to 34 of 34

Thread: Birthday Notifications

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Mar 2003
    Posts
    126

    Exclamation Birthday Notifications

    On my website I'm wanting to list birthday's within the next seven days.

    I have players named listed in my database as follows:

    Ashley Giles 1973-03-19
    Reon King 1975-10-06
    Inzamam-ul-haq 1970-03-03

    Can anyone give me some tips on how best to do this?
    Last edited by JamesNZ; Jul 3rd, 2005 at 12:22 AM.

  2. #2
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: Birthday Notifications

    You need to do these things, all of which can be done in a MySql query:
    1. Find this years birthday.
    2. Convert todays date to days.
    3. Convert this years birthday to days.
    4. Check the difference is between 0 and 7

    Code:
    SELECT datefield FROM table_name WHERE
        TO_DAYS(CONCAT('2005-', 
                      MONTH(datefield), '-', 
                      DAYOFMONTH(datefield))) - 
        TO_DAYS(CURDATE()) BETWEEN 0 AND 7;
    The part CONCAT('2005-', MONTH(datefield), '-', DAYOFMONTH(datefield)) is used to construct a date with this years birthday.
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  3. #3

    Thread Starter
    Lively Member
    Join Date
    Mar 2003
    Posts
    126

    Resolved Re: Birthday Notifications

    Thanks very much visualAd - worked a treat

  4. #4
    Stuck in the 80s The Hobo's Avatar
    Join Date
    Jul 2001
    Location
    Michigan
    Posts
    7,256

    Re: Birthday Notifications

    I haven't tried it, but would something like this also work?

    PHP Code:
    $sql "SELECT * FROM tbl WHERE birthdate < '" date('Y-m-d'strtotime("+7 days")) . "'"
    My evil laugh has a squeak in it.

    kristopherwilson.com

  5. #5

    Thread Starter
    Lively Member
    Join Date
    Mar 2003
    Posts
    126

    Re: Birthday Notifications

    Slight problem with what I'm using:

    $sql = " SELECT PlayerIDAuto, PlayerName, DATE_FORMAT(DOB,'%D %b %Y') DOB, TopPlayer, Country";
    $sql.= " FROM Player";
    $sql.= " WHERE TO_DAYS(CONCAT('2005-', MONTH(DOB), '-', DAYOFMONTH(DOB))) - TO_DAYS(CURDATE()) ";
    $sql.= " BETWEEN 0 AND 7";
    $sql.= " ORDER BY DOB";

    It displays in the following format:

    Upcoming Birthdays in the next 7 Days...

    Albie Morkel
    10th Jun 1981 (Age: 24)
    Daryl Tuffey
    11th Jun 1978 (Age: 27)
    Alex Wharf
    4th Jun 1975 (Age: 30)
    Thilina Kandamby
    4th Jun 1982 (Age: 23)
    Mervyn Dillon
    5th Jun 1974 (Age: 31)
    Andy Symonds
    9th Jun 1975 (Age: 30)

    when it should really be:

    Upcoming Birthdays in the next 7 Days...

    Alex Wharf
    4th Jun 1975 (Age: 30)
    Thilina Kandamby
    4th Jun 1982 (Age: 23)
    Mervyn Dillon
    5th Jun 1974 (Age: 31)
    Andy Symonds
    9th Jun 1975 (Age: 30)
    Albie Morkel
    10th Jun 1981 (Age: 24)
    Daryl Tuffey
    11th Jun 1978 (Age: 27)

    Any tips?

  6. #6
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: Birthday Notifications

    You need to add an ORDER BY to the end of the query.
    Code:
    ORDER BY DOB ASC;
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  7. #7

    Thread Starter
    Lively Member
    Join Date
    Mar 2003
    Posts
    126

    Re: Birthday Notifications

    Thanks for responding, same result however with it displaying like this:

    Albie Morkel
    10th Jun 1981 (Age: 24)
    Daryl Tuffey
    11th Jun 1978 (Age: 27)
    Alex Wharf
    4th Jun 1975 (Age: 30)
    Thilina Kandamby
    4th Jun 1982 (Age: 23)
    Mervyn Dillon
    5th Jun 1974 (Age: 31)
    Andy Symonds
    9th Jun 1975 (Age: 30)

  8. #8
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: Birthday Notifications

    You need to call the DOB column something else. It is using the alias to order the results. If you call you DOB column something different then it should use the correct one:
    Code:
    DATE_FORMAT(DOB,'%D %b %Y') birthday,
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  9. #9

    Thread Starter
    Lively Member
    Join Date
    Mar 2003
    Posts
    126

    Re: Birthday Notifications

    Still doesn't work unforunately

    Refer to attached. Ahh, I see what it's doing. It's sorting by year when I really want it to sort by month/day. Is this possible?
    Attached Images Attached Images  

  10. #10
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: Birthday Notifications

    Well its sorting by DOB so that is correct. Am I right in thinking you want to sort by just the month and the day of the birthday? - If so you will need to add an extra column which contains this years birthday and sort using that:
    Code:
    ... Birthday,
    CONCAT('2005-', MONTH(DOB), '-', DAYOFMONTH(DOB)) DOB2, TopPlayer ..
    ..
    ORDER BY DOB2
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  11. #11

    Thread Starter
    Lively Member
    Join Date
    Mar 2003
    Posts
    126

    Re: Birthday Notifications

    Cheers visualad - will go about it that way

  12. #12

    Thread Starter
    Lively Member
    Join Date
    Mar 2003
    Posts
    126

    Re: Birthday Notifications

    Know of any quick way of going through and adding another field with this years birthday visualad?

    I was thinking of running a loop through all the dob's in the table and removing the first 4 characters off the DOB and replacing it with 2005 before updating a new column with the modified DOB. How would I remove the first four characters from a date in PHP?

  13. #13
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: Birthday Notifications

    Quote Originally Posted by JamesNZ
    Know of any quick way of going through and adding another field with this years birthday visualad?

    I was thinking of running a loop through all the dob's in the table and removing the first 4 characters off the DOB and replacing it with 2005 before updating a new column with the modified DOB. How would I remove the first four characters from a date in PHP?
    If you add a column to store this years birthday you are faced with following issues:
    1. Extra space required to store the other birthday.
    2. Having to calculate this years birthday before storing the new user.
    3. Having to update all the users once a year.

    The field you need can be calculated using the date of birth as I outlined above and there really is no need to add an extra field for this years birthday.
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  14. #14

    Thread Starter
    Lively Member
    Join Date
    Mar 2003
    Posts
    126

    Re: Birthday Notifications

    Thanks for that. Are you referring to having the query structured like this:

    $sql = " SELECT PlayerIDAuto, PlayerName, CONCAT('2005-', MONTH(DOB), '-', DAYOFMONTH(DOB)) DOB2 TopPlayer, Country";
    $sql.= " FROM Player";
    $sql.= " WHERE TO_DAYS(CONCAT('2005-', MONTH(DOB), '-', DAYOFMONTH(DOB))) - TO_DAYS(CURDATE()) ";
    $sql.= " BETWEEN 0 AND 7";
    $sql.= " ORDER BY DOB2 ASC";

  15. #15

    Thread Starter
    Lively Member
    Join Date
    Mar 2003
    Posts
    126

    Re: Birthday Notifications

    Yes I presume it is, all working fine with the following:

    $sql = " SELECT PlayerIDAuto, PlayerName, CONCAT('2005-', MONTH(DOB), '-', DAYOFMONTH(DOB)) DOB2, DATE_FORMAT(DOB,'%D %b %Y') Birthday, TopPlayer, Country";
    $sql.= " FROM Player";
    $sql.= " WHERE TO_DAYS(CONCAT('2005-', MONTH(DOB), '-', DAYOFMONTH(DOB))) - TO_DAYS(CURDATE()) ";
    $sql.= " BETWEEN 0 AND 7";
    $sql.= " ORDER BY DOB2 ASC";

    Thanks so much for your help

  16. #16
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: Birthday Notifications

    No problems - don't forget to resolve the thread.

    Thanks
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  17. #17

    Thread Starter
    Lively Member
    Join Date
    Mar 2003
    Posts
    126

    Re: Birthday Notifications

    You must spread some Reputation around before giving it to visualAd again.
    How stupid is that

    Sure

  18. #18
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: Birthday Notifications

    No no - I mean change the icon to a tick, you don't have to rate the post. But thanks for trying anyway
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  19. #19

    Thread Starter
    Lively Member
    Join Date
    Mar 2003
    Posts
    126

    Re: Birthday Notifications

    No problem - thanks again for your help

  20. #20

    Thread Starter
    Lively Member
    Join Date
    Mar 2003
    Posts
    126

    Re: Birthday Notifications

    Isn't working again visualad - can you help?

    Upcoming Birthdays in the next 7 Days...

    Scott Styris
    10th Jul 1975 (Age: 30)
    Harbhajan Singh
    3rd Jul 1980 (Age: 25)
    Zander de Bruyn
    5th Jul 1975 (Age: 30)
    Makhaya Ntini
    6th Jul 1977 (Age: 28)
    Douglas Hondo
    7th Jul 1979 (Age: 26)
    Mahendra Singh Dhoni
    7th Jul 1981 (Age: 24)
    Sourav Ganguly
    8th Jul 1972 (Age: 33)
    Ian Bradshaw
    9th Jul 1974 (Age: 31)
    Query:

    $sql = " SELECT PlayerIDAuto, PlayerName, CONCAT('2005-', MONTH(DOB), '-', DAYOFMONTH(DOB)) DOB2, DATE_FORMAT(DOB,'%D %b %Y') Birthday, TopPlayer, Country";
    $sql.= " FROM Player";
    $sql.= " WHERE TO_DAYS(CONCAT('2005-', MONTH(DOB), '-', DAYOFMONTH(DOB))) - TO_DAYS(CURDATE()) ";
    $sql.= " BETWEEN 0 AND 7";
    $sql.= " ORDER BY DOB2 ASC";

  21. #21
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: Birthday Notifications

    I think it is interpteting it as a string. Try this:
    Code:
    CAST(CONCAT('2005-', MONTH(DOB), '-', DAYOFMONTH(DOB)) AS DATE) DOB2
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  22. #22

    Thread Starter
    Lively Member
    Join Date
    Mar 2003
    Posts
    126

    Re: Birthday Notifications

    Thanks for responding but it didn't work unfortnately

    $sql = " SELECT PlayerIDAuto, PlayerName, CAST(CONCAT('2005-', MONTH(DOB), '-', DAYOFMONTH(DOB)) AS DATE) DOB2, DATE_FORMAT(DOB,'%D %b %Y') Birthday, DATE_FORMAT(FROM_DAYS(TO_DAYS(NOW())-TO_DAYS(dob)), '%Y')+0 AS Age, TopPlayer, Country";
    $sql.= " FROM Player";
    $sql.= " WHERE TO_DAYS(CONCAT('2005-', MONTH(DOB), '-', DAYOFMONTH(DOB))) - TO_DAYS(CURDATE()) ";
    $sql.= " BETWEEN 0 AND 7";
    $sql.= " ORDER BY DOB2 ASC";

  23. #23
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: Birthday Notifications

    Can you post the output?
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  24. #24

    Thread Starter
    Lively Member
    Join Date
    Mar 2003
    Posts
    126

    Re: Birthday Notifications

    Same output as before actually:

    Scott Styris
    10th Jul 1975 (Age: 30)
    Harbhajan Singh
    3rd Jul 1980 (Age: 25)
    Zander de Bruyn
    5th Jul 1975 (Age: 30)
    Makhaya Ntini
    6th Jul 1977 (Age: 28)
    Douglas Hondo
    7th Jul 1979 (Age: 26)
    Mahendra Singh Dhoni
    7th Jul 1981 (Age: 24)
    Sourav Ganguly
    8th Jul 1972 (Age: 33)
    Ian Bradshaw
    9th Jul 1974 (Age: 31)

  25. #25
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: Birthday Notifications

    I've tested this on my SQL server and it works fine. I'm not sure why you are getting different results
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  26. #26

    Thread Starter
    Lively Member
    Join Date
    Mar 2003
    Posts
    126

    Re: Birthday Notifications

    Any difference with MySQL?

  27. #27
    Kitten CornedBee's Avatar
    Join Date
    Aug 2001
    Location
    In a microchip!
    Posts
    11,594

    Re: Birthday Notifications

    Does MySQL support DATE_FORMAT?

    What version of MySQL? CAST is supported starting with 4.0.2, but only in 4.1.0 and later does a cast to DATE affect the way the value is interpreted.
    All the buzzt
    CornedBee

    "Writing specifications is like writing a novel. Writing code is like writing poetry."
    - Anonymous, published by Raymond Chen

    Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.

  28. #28

    Thread Starter
    Lively Member
    Join Date
    Mar 2003
    Posts
    126

    Re: Birthday Notifications

    My web host has:

    MySQL version 4.0.24-standard-log

  29. #29
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: Birthday Notifications

    If the function is not supported you'll get an SQL error. Have you tried the query in PHPMyAdmin? Can you post the full query results from there?
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  30. #30

    Thread Starter
    Lively Member
    Join Date
    Mar 2003
    Posts
    126

    Re: Birthday Notifications

    Sure - attached.
    Attached Images Attached Images  

  31. #31
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: Birthday Notifications

    Try Cast AS DATETIME too and see what you get.
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  32. #32
    Kitten CornedBee's Avatar
    Join Date
    Aug 2001
    Location
    In a microchip!
    Posts
    11,594

    Re: Birthday Notifications

    I'm telling you, the ordering doesn't work because the 4.0.x implementation of CAST is incomplete.

    Try this:
    Code:
    $sql = " SELECT PlayerIDAuto, PlayerName, ".
        "CAST(CONCAT('2005-', LPAD(MONTH(DOB), 2, '0'), '-', LPAD(DAYOFMONTH(DOB), 2, '0')) AS DATE) DOB2, ".
        "DATE_FORMAT(DOB,'%D %b %Y') Birthday, DATE_FORMAT(FROM_DAYS(TO_DAYS(NOW())-TO_DAYS(dob)), '%Y')+0 AS Age, TopPlayer, Country";
    $sql.= " FROM Player";
    $sql.= " WHERE TO_DAYS(CONCAT('2005-', MONTH(DOB), '-', DAYOFMONTH(DOB))) - TO_DAYS(CURDATE()) ";
    $sql.= " BETWEEN 0 AND 7";
    $sql.= " ORDER BY DOB2 ASC";
    All the buzzt
    CornedBee

    "Writing specifications is like writing a novel. Writing code is like writing poetry."
    - Anonymous, published by Raymond Chen

    Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.

  33. #33
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: Birthday Notifications

    Thanks for the correction there. I didn't read that post you made , it make sense now.
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  34. #34

    Thread Starter
    Lively Member
    Join Date
    Mar 2003
    Posts
    126

    Re: Birthday Notifications

    Thanks a lot guys - really appreciate your help

    That worked a treat

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width