User Profile

Collapse

Profile Sidebar

Collapse
momogi
momogi
Last Activity: Oct 29 '09, 03:01 AM
Joined: Sep 19 '07
Location: indonesia
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • momogi
    replied to face detection
    I'll make an application that can detect a human face from image.

    And there are several method in face detection; PCA, template matching, neural network, etc... i just wanna know what the newest method is...
    See more | Go to post

    Leave a comment:


  • momogi
    started a topic face detection

    face detection

    could you tell me what the newest method in face detection? and what's the advantage/disadvantage from that method?

    I'll make a system that can detect a frontal human face and I don't know which method I should use...
    See more | Go to post

  • momogi
    started a topic simulated annealing
    in C

    simulated annealing

    Stil about simulated programming,,, Here is the code I have. Firstly, it must generate a path using number 1 to 6 to represent the city. Then it will calculate the distance (using the coordinate). But, in fact, the output of the distance doesn't appropriate with the coordinate of the randomed path. The output of the distance always 129.08, which is the distance city 1 to city 6. every time the code is deployed, it always prints 6 cities, randomed,...
    See more | Go to post

  • momogi
    started a topic generate random value
    in C

    generate random value

    I'm making a TSP (Travelling Salesman Problem) project in Simulated Annealing Method.
    Here, I need to add a condition to the generated random value.
    I wanna ask you, how to generate two random value in which the first random value must bigger than the second one. random1>random2

    here the code I have :
    Code:
    for (int i=1;i<=2;i++)
     printf("%d\n", rand());
    ...
    See more | Go to post

  • momogi
    started a topic ma' final project

    ma' final project

    hi.. I wonder.. can you tell me the topic of your final project. how can u get that topic?
    now, i,m going to do my final project but I haven't find any topic..

    - thank you! -
    See more | Go to post

  • momogi
    started a topic streaming video in PHP5
    in PHP

    streaming video in PHP5

    hi all.. I wanna make a site where every visitors can see a streaming video (in real time, may be like youtube). So, in the same time when the page is loading, the video is playing.
    My questions, is it possible to make this streaming video using PHP5? Or I have to learn another language? Does PHP support this?
    I don't know where to start this project... Do I have to make some kind of video player in this site?
    thanks for your...
    See more | Go to post

  • momogi
    replied to Birthday Twins
    are you twin??
    btw, I'm agree with your answer.....
    See more | Go to post

    Leave a comment:


  • momogi
    replied to weightless Elephant!
    actually, there's no Rs.1 remaining (I think).

    Rs.25 was paid to the cashier.
    Rs.1 for each person, so Rs.1 *3 = Rs.3
    Rs.2 was taken by the waiter.

    Then, the sum of 25 + 3 + 2 = 30

    You make this a little bit confusing by your question...

    am I right?...
    See more | Go to post

    Leave a comment:


  • momogi
    replied to Session full details
    in PHP
    Hi dsudhakara..

    You can try this one. session...
    See more | Go to post

    Leave a comment:


  • Thanks ajaxrand :)

    ........
    See more | Go to post

    Leave a comment:


  • momogi
    replied to PHP Sessions Not working
    in PHP
    Oh.. I see...

    Thank you Atli.. :)...
    See more | Go to post

    Leave a comment:


  • momogi
    replied to session checking for login
    in PHP
    to all of thescripts's members...

    I wanna tell you that my question is solved.
    it was just a simple mistake...

    --thanks--

    :D
    See more | Go to post

    Leave a comment:


  • momogi
    started a topic tell the browser not to cache the previous pages
    in PHP

    tell the browser not to cache the previous pages

    Code:
    Response.Cache.SetNoStore();
    I have read in the .Net Forum, that there's a way to tell the browser not to cache the previous pages. I wanna know if PHP have the same way to do this:
    Code:
     Response.Cache.SetNoStore();
    .
    Because I don't know anything about .Net language. And I need to try this because my session doesn't work. My project will finish if I can fix my session (for login).

    Thanks...
    See more | Go to post

  • momogi
    replied to session checking for login
    in PHP
    Please....

    :)...
    See more | Go to post

    Leave a comment:


  • momogi
    replied to Select records from mysql Table
    in PHP
    may be should be like this:
    [CODE=php]
    $queri="SELECT accesscode FROM authorize_users WHERE user_id = '$_POST(thename ofyourtextfield/radiobutton/etc whichcatch the value of user id)' AND user_password = '$_POST(thename ofyourtextfield/radiobutton/etc which catch the value of user's password)' and account = $_POST(thenameo fyourtextfield/radiobutton/etc which catch the value of user's account)' ";
    $result=mysql_q uery($queri);...
    See more | Go to post

    Leave a comment:


  • momogi
    started a topic session checking for login
    in PHP

    session checking for login

    Hi theScripts!
    I have a problem with my session.

    When user login in my site, the session will save the user name and password. In my Login.php I have:
    [CODE=php]
    session_start() ;
    $qr="SELECT*FRO M tbllogin WHERE nama='$_POST['nama']' AND password='$_POS T['password']' ";
    $res=mysql_quer y($qr);
    $row=mysql_fetc h_assoc($res);
    $num=mysql_num_ rows($hasil);
    ...
    See more | Go to post
    Last edited by momogi; Sep 26 '07, 09:16 AM. Reason: something missed

  • momogi
    replied to resubmit form
    in PHP
    Hi DrShift..
    Actually, I'm the newbie in PHP. But I think, its impossible to resubmit form without any trigger in PHP because it is a server-side-scripting.. You should combine your PHP code with JavaScript....
    See more | Go to post

    Leave a comment:


  • momogi
    replied to PHP Sessions Not working
    in PHP
    Hi Atli..

    I wanna know how to configure php.ini in order to give PHP permission to access session.save_pa th's directory...
    Looking forward to your answer... :)

    --Thank You--...
    See more | Go to post

    Leave a comment:


  • momogi
    replied to SESSION is not working in IIS
    in IIS
    Thank you!!



    hi..bnashenas!

    I wanna ask you a simple question. Where do you put your session.save_pa th's directory??

    My PHP is installed in C:\webserver\ph p and my session doesn't work...

    Pls help me and Thank you... :)...
    See more | Go to post

    Leave a comment:


  • momogi
    started a topic Configuration in php.ini to make the session works
    in PHP

    Configuration in php.ini to make the session works

    My session doesn't work, but I'm sure that nothing is wrong with my code. I wanna know, is there a configuration in our php.ini to make the session works??

    And where should we put our session.save_pa th?

    In my php.info(), the session.save_pa th returns no value

    I''ll appreciate your reply...

    ---thanks---
    See more | Go to post
No activity results to display
Show More
Working...