<?php
include'DatabaseConnection.php';
/**
*class to select url from the database
*
*/
class EditUrlCls extends DatabaseConnection
{
/**
*function to select url from the database
*
*/
function executeSelect($sel)
{
$this->databaseConnectivity();
$this->result = mysql_query($sel)or die(mysql_error());
$ret = mysql_fetch_assoc($this->result)or die(mysql_error());
return $ret;
}
}
?>