Ciao a tutti...
volevo chiedere aiuto per uno script...
io da mysql prelevo dei dati (nomi di file) e tramite quelli devo copiarli dalla cartella X alla cartella Y... come posso fare?
fino adesso ho scritto:
Codice PHP:
<?php
// Make a MySQL Connection
mysql_connect("localhost", "user", "pass") or die(mysql_error());
mysql_select_db("database") or die(mysql_error());
// Get all the data from the "example" table
$result = mysql_query("SELECT * FROM phpbb_attachments WHERE topic_id='245' ORDER BY attach_id DESC LIMIT 6")
or die(mysql_error());
// keeps getting the next row until there are no more to get
while($row = mysql_fetch_array( $result )) {
// Print out the contents of each row into a table
COPIA
}
?>