CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Jan 2009
    Posts
    1

    Unhappy Urgent Help Needed : Horoscope Website

    Hi all
    I am planning to make a horoscope website.
    For this I am planning to get the data from the users to initially only, when they will register, for my website.
    Now I am planning to send all the users monthly updates in accordance with their horoscopes.
    I am also planning to have a weekly updates service. Hence users who want to get update for next week need to log in to the website.



    What I want :
    When user will log in to my website and click the option of "generate weekly horoscope"
    I want to drive two functions from it side by side
    1) Generate the horoscope from his details that are already available with me.
    2) Get his data, Name, userid, IP address, Country, Time and Date in a table whenever he generates the weekly horoscope (so that in future I can analyze the trend and enhance my product further.

    Please help me do this as I am amateur and I don't know how it can be done.

  2. #2
    Join Date
    Jun 2005
    Location
    JHB South Africa
    Posts
    3,772

    Re: Urgent Help Needed : Horoscope Website

    For #2 .. Your server should automaticaly log the users IP,so to get the other details from his IP addy look at What is my IP and also What is my IP Address ... these will give you city and Country details according to IP address..

    the rest of the info you need to prompt the user for it.. save it in a database, and next time he logs in, you can retrieve it...

    Gremmy...
    Articles VB6 : Break the 2G limit - Animation 1, 2 VB.NET : 2005/8 : Moving Images , Animation 1 , 2 , 3 , User Controls
    WPF Articles : 3D Animation 1 , 2 , 3
    Code snips: VB6 Hex Edit, IP Chat, Copy Prot., Crop, Zoom : .NET IP Chat (V4), Adv. ContextMenus, click Hotspot, Scroll Controls
    Find me in ASP.NET., VB6., VB.NET , Writing Articles, My Genealogy, Forum
    All VS.NET: posts refer to VS.NET 2008 (Pro) unless otherwise stated.

  3. #3
    Join Date
    Aug 2000
    Location
    Essex, Uk
    Posts
    1,214

    Re: Urgent Help Needed : Horoscope Website

    If you have NO coding experience, you have set yourself a hard task to start your first project. Although we can help you, we cannot DO the work for you.

    First of all, look for a book on how to design databases, this will be needed at the backend to store the data. You might also want to look at security, since you will want to make your site as 'hack' proof as possible and part of this will be down to the security of your database and the server you are running it on. With this you want a good SQL book to teach you how to construct SQL syntax.

    Next at the front end where your going to interact with the user, you need a good front end development tool and for this Visual Studio is ideal. You'll also want to get yourself a good language book either VB or C# depending on your language preference and in either way probably want a good asp.net reference.
    If you find my answers helpful, dont forget to rate me

  4. #4
    Join Date
    May 2002
    Posts
    10,943

    Re: Urgent Help Needed : Horoscope Website

    Alternatively, you can learn PHP which is a very simple scripting language. It interfaces nicely with many databases and the documentation is very concise. Many bloggers also cover specific topics that will help you along the way.

    However, Bill is completely correct. If you have absolutely no coding experience, then you are going to have to take some time to teach yourself to code first. Then, you can start writing your application.
    If the post was helpful...Rate it! Remember to use [code] or [php] tags.

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

Featured