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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by pushyr

  1. pushyr

    preg_match_all not matching everything

    you have totally helped me out on this one... can't thank you enough!!!!
  2. pushyr

    preg_match_all not matching everything

    Hi jpadie, I used your exact pattern, but didn't work as i'm still getting the same results.. preg_match_all('/\-{58}(.*?)\-{58}|$/s', $content, $content0);
  3. pushyr

    preg_match_all not matching everything

    I'm trying to do a preg_match_all, but it's not matching everything. about 30% gets missed, here's a sample of the full text that i'm using preg_match_all on... I'm trying to match everything that's in-between these lines here's my code...
  4. pushyr

    convert freindly date and time to mysql format

    cheers jpadie... i knew it were something simple like that!
  5. pushyr

    convert freindly date and time to mysql format

    is there a simple way to convert a friendly date and time to a mysql format my date and time looks like this... Tue, 31 Jul 2012 13:17:23 GMT and i'd like to both split and convert into this... 1. 2012-07-31 2. 13:17:23
  6. pushyr

    trying to regex first line of text

    cheers feherke!
  7. pushyr

    trying to regex first line of text

    thanks for your help feherke... i solved it with this... $url0 = explode("\r\n", $content00); $url = $url0[1]; since the text will always be 20 to 30 lines, i think this is ok?
  8. pushyr

    trying to regex first line of text

    ahh.. ok, i think i know were i went wrong with my initial question. i'm really trying to get the second line... so the first line is: ---------------------------------------------------------- and the second line i'm after is: http://www.bbc.co.uk/news/
  9. pushyr

    trying to regex first line of text

    this is perhaps one of the simplest things to do, but after googling i just can't find anything that works. Here's my own concoction, which doesn't work. ...so, how would i regex the first line from a block of text preg_match("#^(.*?)\r\n#is", $content00);
  10. pushyr

    using php to load mysqldumps

    actually guys... just realized I can seemlessly import using a sql client cheers for everything!
  11. pushyr

    using php to load mysqldumps

    Hi jpadie, I made the changes like you said to my php.ini but got the following error when trying to upload a 144mb table via phpmyadmin where you browse to select the file, I also noticed that it says (Max: 512 kKiB) do I need to make further changes elsewhere like in phpmyadmin to...
  12. pushyr

    using php to load mysqldumps

    if using phpmyadmin there's a file size restriction (Max: 2,048 KiB)... how do i get rid of or override the restriction
  13. pushyr

    using php to load mysqldumps

    i have a single mysqldump file with quite a few large tables. the file totals about 4.5gb i would like to load the file (all these tables and their contents) into a mysql database using php after searching i couldn't really find anything that put me on the right path. how would go about...
  14. pushyr

    geting the second to last result from a loop

    that did the job... perfect!
  15. pushyr

    geting the second to last result from a loop

    hey jpadie.. i cant update the query... as i need the last two rows in the result (in addition to all the rows in the result) both 6 and 5... my intention is to do an equation with these two numbers i can currently get the 6, but now i need to get the 5

Part and Inventory Search

Back
Top