Activity Stream
48,167 MEMBERS
6792 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Results 1 to 3 of 3
  1.     
    #1
    Member
    Website's:
    mywallpapergalaxy.com

    Default insert 100 urls to database in one go ?

    hello,
    could anybody help me with this please.
    im trying to add 100 urls (domain url) in to a data base but want to some how do it with one go. ?
    so far i am having to insert them one by one and it taking a long time to do.

    tables:
    Code: 
    url - yes - no
    how to insert like so:
    www.domain1.com - 0 - 0
    www.domain2.com - 0 - 0
    www.domain3.com - 0 - 0
    and so on

    thanks in advance
    jack3r Reviewed by jack3r on . insert 100 urls to database in one go ? hello, could anybody help me with this please. im trying to add 100 urls (domain url) in to a data base but want to some how do it with one go. ? so far i am having to insert them one by one and it taking a long time to do. :'( tables: url - yes - no how to insert like so: www.domain1.com - 0 - 0 Rating: 5
    Booo!! I'm behind you !!

  2.   Sponsored Links

  3.     
    #2
    Member
    Try this

    PHP Code: 
    <?php

    $db 
    mysql_connect("localhost""dblogin""dbpass");
    mysql_select_db("dbname");

    $lines file("links.txt");
    foreach(
    $lines as $line)
    {
        
    $ins mysql_query("INSERT INTO table SET url='$line', yes='0', no='0'"); 
    }

    mysql_close($db); 
    ?>

  4.     
    #3
    Member
    You must tell how do you keep the url now?
    Otherwise, It is difficult to give you the script

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. MySQL insert using PHP Help
    By EnCiPh3r in forum Web Development Area
    Replies: 9
    Last Post: 13th Jan 2012, 11:10 PM
  2. Where can I insert this code?
    By Divvy in forum Wordpress
    Replies: 7
    Last Post: 21st Oct 2011, 10:29 AM
  3. insert PSD file
    By iobit in forum vBulletin
    Replies: 10
    Last Post: 9th Aug 2011, 08:38 AM
  4. Insert Image Code
    By warezboy in forum vBulletin
    Replies: 12
    Last Post: 9th Jun 2010, 06:16 PM
  5. Insert Image CODE
    By tom247 in forum Web Application/Script Support
    Replies: 3
    Last Post: 9th Jun 2010, 05:04 AM

Tags for this Thread

BE SOCIAL