Menu

[2eb2a2]: / dbsync_automated_currentversion.php  Maximize  Restore  History

Download this file

22 lines (15 with data), 490 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
include_once('utils/compatibility.inc.php');
setCompatibility(0);
include("utils/utils.inc.php");
include("conf/config.inc.php");
mysql_connect($dbserver, $username, $password);
@mysql_select_db($database) or die("Unable to select database");
include("dbsync_currentversion.inc.php");
$projectname = $_GET['project'];
$version = dbsynccurrentversion($projectname, -1, 1);
echo "\n";
echo "project.name= $projectname\n";
echo "project.version = $version\n";
mysql_close();
?>
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.