I've a site in .php where I need two minor tweaks. (1) The server time is US based. I wanted it to be displayed in IST. (2) I want to display certain fields from a table based on the login user name. I need some one to start this now and will finish quickly. I can provide you ftp details. My maximum budget is US$ 15 I can pay only after finishing the job.
Why paying for such things, really, next time you have trouble with the server time (timezone), go to your server's php.ini (usually /etc/php.ini) but if you dont find it, use "# yum install mlocate (or apt-get install mlocate for ubuntu/debian) # updatedb # locate php.ini , search for timezone and change it to country / city format. And for the things you want to display from db related to username: $sql = mysql_query("SELECT id,age,name,gender FROM users WHERE username = '".$username."' LIMIT 1"); $_sql = mysql_fetch_assoc($sql); and now display the data to fit your needs like echo $_sql['age']; , or any other field you like. Get some beginner mysql tutorials or get help on forums like this.