CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Crazy-Heart

Search: Search took 0.04 seconds.

  1. Replies
    6
    Views
    22,148

    Re: Use of Dijkstra's algorithm in PHP

    that's ok, I made it work, there's a variable somewhere that shouldn't be there ;)
  2. Replies
    6
    Views
    22,148

    Use of Dijkstra's algorithm in PHP

    Hello everyone! I need some help with Dijkstra's algorithm in PHP!
    I have created 3 php files, the one has the map, the other the algorithm and the last one the results.

    map.php

    <html>...
  3. Replies
    5
    Views
    1,092

    Re: IP Address Condition

    hmmm I got a bit confused.
    if I want to pick all IPs from, let's say, 192.168.178.21 to 192.168.178.31 how do I do that?
  4. Replies
    1
    Views
    2,144

    Shortest path algorithms

    Hi everyone,
    I've found 2 good algorithms for finding the shortest path between 2 spots. Dijkstra's and Floyd's. The question is: does anyone know how to use one of those (anyone) with...
  5. Replies
    2,690
    Views
    1,025,155

    Re: What Song Are You Listening To Now¿

    Underworld - Born sleepy
  6. Replies
    5
    Views
    790

    Re: 2 questions about mysql & php

    I don't use a break, this is the code i'm using



    $content .=$row3['coursename'].", ";

    while ($row4 = mysql_fetch_assoc($res3))
    {
    $content .=$row4['coursename'].", ";...
  7. Replies
    5
    Views
    790

    Re: 2 questions about mysql & php

    thank you for your reply!
    about the 2nd problem, the thing is that I want to return all the results! any ideas?
  8. Replies
    5
    Views
    790

    2 questions about mysql & php

    Hi everyone!
    I have 2 problems!

    First-

    I'm making a page where I select some values to appear


    $dbquery = "SELECT value1, value2 FROM classes
    WHERE classId=2";
  9. Replies
    5
    Views
    1,092

    Re: getting user information...

    ok, thank you!
  10. Replies
    5
    Views
    1,092

    IP Address Condition

    I get the IP address from the guest and then I want to put an IF clause depending on his IP. i.e. if the guest's IP is 124.456.789.**

    how do I put this on the code? it can't work with asterics or...
  11. Replies
    4
    Views
    617

    Re: uploading file

    Now I got it! ok, thanks for your help I'll try it!!!
  12. Replies
    4
    Views
    617

    Re: uploading file

    yes I have that, I just didn't include it in the code here.

    but I have a WHERE clause here

    WHERE classId=".$classId;
  13. Replies
    4
    Views
    617

    uploading file

    Hi everyone!
    I'm trying to make a file upload page. I have found the right code (which uploads the file to the folder that I've chosen) but I'd also like it too insert some values to the database,...
  14. Replies
    1
    Views
    1,048

    Re: Graph shortest path algorithms

    http://en.wikipedia.org/wiki/Dijkstra's_algorithm
  15. Replies
    5
    Views
    1,220

    use double in switch

    Hi everyone.
    I've searched the forum and found some topics that say how to convert a double into a integer. But I'm in the process of making a program that will convert meters to...
Results 1 to 15 of 15





Click Here to Expand Forum to Full Width

Featured