使用php在数据库中添加multirows

I have to add in database many links that have same characteristics(Link type, country, author, project). For example I want to add 6 links-6rows in my database(see image), all at once. Please help me do that.

enter image description here

<html>
<head><title>Add values to DataBase</title></head>
    <body>
        <form name="input" action="" method="post">
            <table>
                    <tr>
                    <td>
                <b>Link Type: <br><input type="text" name="LinkType"><br>
                    </td>
                    <td>
                <b>Country: <br><input type="text" name="Country"><br>
                    </td>
                    </tr>
                    <tr>
                    <td>
                <b>Author: <br><input type="text" name="Author"><br>
                    </td>
                    <td>
                <b>Project: <br><input type="text" name="Project"><br>
                    </td>
                    </tr>
            </table>
                <b>Links:</b><br>
                    <textarea rows="20" cols="80" name='Link'>
                    </textarea><br>
                    <input type="submit" onclick="Confirmare()" name="introdu" value="Exporta">
        </form> 
    </body>
</html>

<?PHP

    error_reporting(E_ALL & ~E_NOTICE);
    mysql_connect("localhost", "root", "pechea.com") or die(mysql_error());
    mysql_select_db("repdb") or die(mysql_error());

    $Link=$_POST['Link'];
    $LinkType=$_POST['LinkType'];
    $Project=$_POST['Project'];
    $Date=$_POST['Date'];
    $Country=$_POST['Country'];
    $Author=$_POST['Author'];
    $Status=$_POST['Status'];




?>
<script type="text/javascript">
        function Confirmare()
        {
<?php
    mysql_query("INSERT INTO projects (Link, LinkType, Project, Date, Country, Author, Status)  
    VALUES ('".$Link."', '".$LinkType."', '".$Project."','".$Date."', '".$Country."', '".$Author."', '".$Status."') ")  or die(mysql_error());

?>
alert("Values Added in DB!");}
</script>

Explode links in the textarea

$links = explode("
", $_POST['Link']);

Loop though links and insert

foreach($links as $link) {
    mysql_query("INSERT ...");
}

Don't forget to escape...