<?php
function testfun($get_user_shop,$option) {
global $server_data;
$sql_load_cube="select * from list_of where username='$get_user_shop' order by number desc limit 1;";
$sql_load_cube_query=mysql_db_query($server_data,$sql_load_cube);
$cubeload=mysql_fetch_array($sql_load_cube_query);
return $cubeload[$option];
}
echo testfun($get_user_shop,"Exp");
?>