ok been doing some simple php stuff trying to get a script to import an .sql file from the directory it's inside the error we're getting is "No input file specified."
Suggestions?
Suggestions?
Code:
<?php
error_reporting(E_ALL);
include_once '../db.php';
// Perform Query
$result = mysql_query(source './account.sql');
echo($result);
}
?>