how to send on users profile page on selecting username( using jason autosuggest script)
        Posted  
        
            by I Like PHP
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by I Like PHP
        
        
        
        Published on 2010-04-21T13:00:31Z
        Indexed on 
            2010/04/21
            13:03 UTC
        
        
        Read the original article
        Hit count: 709
        
php
i m using auto suggest using Ajax Jason .
now when a user select a user name , i want to send user on the link of that user name
my jason data is coming in this way
{
 query:'hel',
 suggestions:["hello world","hell boy ","bac to hell"],
 data:["2","26","34"]                       
}
now what i want that user goes to http://userProfile.php?uid=26 on select username(suppose user select "hell boy")
how to do this??
© Stack Overflow or respective owner