Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. perlone

    A Voting System Help

    Thank You. I was thinking about varchar(15) too.
  2. perlone

    A Voting System Help

    Hi, I'm using phpMyAdmin and what 'type' of feld do you think IP address should hold? So far I have 'TEXT'. Is this ok? Thanks.
  3. perlone

    A Voting System Help

    Thank You!
  4. perlone

    A Voting System Help

    Hello, I'm creating a voting system and I was wondering if you could help me. I have 2 columns - gid,IP. `gid` is the ID for game and `IP` is for IP Address. gid | IP 6 |xx.xxx.xx 7 |xx.xxx.xx 6 |xx.xxx.xx 6 |xx.xxx.xx I want to display the results like this: GID | Votes 6 | 3 7...
  5. perlone

    Regex Searching help

    Thanks again, it works like a charm :)
  6. perlone

    Regex Searching help

    Hello again, If I wanted to search for the game `title` as well, can you show how to do it? So far I did this but don't work: my $sql = 'select title,keywords from index_tble'; @array = map {'%' . $_ . '%' } split(/\s+/,$q); if (@array){ $sql .= " where "; my @a; push...
  7. perlone

    Regex Searching help

    Hello Coderifous, Thank you so much for your kind code. It works very well and it loads faster as well. Thanks again :)
  8. perlone

    Regex Searching help

    Hello Coderifous, Thank You so much for your code, but when I tried your code, I got the following error: Cannot execute statement! called with 1 bind variables when 0 are needed
  9. perlone

    Regex Searching help

    Thank You Guys. You guys are eally helpful :)
  10. perlone

    Regex Searching help

    Thank You! It works a lot better :)
  11. perlone

    Regex Searching help

    Hello, I'm really new to regular expressions and I was wondering if anyone could give me a hand. What I have is some data on mySQL which contains `title`, and `keywords` and I want the user to search through the title and keywords. Here's an example: Table: games ID | Title | Keywords...
  12. perlone

    Lock/Flock with DBI

    oh thanks. That makes my life alot easier :)
  13. perlone

    Lock/Flock with DBI

    Hello, I'm creating a program where users gets to add a review about a specific product, so far I created normal like when they add the 'comments', it adds to the database. I'm using mySQL for database and I was wondering if anyone could show me how to lock something with DBI. Thank You.
  14. perlone

    Regex - help

    Hello, I have a database filled with keywords and the program let you search for it. For example of my data: [keywords] quest,alien,campy,3d What I want to do is let you search through the keywords. So I have the following: $q=param('q'); if ($keywords =~/$q/i) { print "match"; }...
  15. perlone

    Regex help please :(

    thank you!
  16. perlone

    Regex help please :(

    Hello, I have some image files that has names like: PC-blah1.jpg GBA-test.jpg Is there anyway I can get the value 'blah1' and 'test'? I need to get the value between the '-' and '.jpg' . If you can, please help and thank you so much for reading. -Aaron
  17. perlone

    creating "Page created in 2.1 secs" script

    hi, for some reason it displays like this: 0.2d:0.2d:44 how can i fix this? Thanks
  18. perlone

    creating "Page created in 2.1 secs" script

    Thank You There is no Knowledge that is not power. Age: 17 E-mail: projectnet01@yahoo.com Company:(not done yet) :-) Status: Currently working with C++ for game developing. And making a musical band. -Aaron
  19. perlone

    creating "Page created in 2.1 secs" script

    Hello, I have seen on some pages that has "Page created in 1.2 seconds" and I was wondering if anyone could show me how that is done or give me some idea. Thank you so much for reading.
  20. perlone

    Getting the last_auto increment value

    Hello, I was wondering if anyone could show me how to get the last auto increment value from a table called 'news'. Thank You so much. There is no Knowledge that is not power. Age: 17 E-mail: projectnet01@yahoo.com Company:(not done yet) :-) Status: Currently working with C++ for game...

Part and Inventory Search

Back
Top