Skip to main content

Posts

Showing posts from 2012

Panvel and surrounding area info.............

www.panvellink.com Welcome to  Panvel link . com  - a web Directory Portal for Panvel and surrounding area.   Contents Directory listings of Shops & Services of Panvel area. Articles on Various topics - Contributed by people like you. Info of various Public Utility services Like Railway Timetable, Bus routes etc. Information of weekend Gateways, picnic Spots etc. & lots of  other Information   This Website provides  FREE  as well as  PAID  Listings for Shops and Services (Only B2C) of Panvel area   Please Contact us at  sales@panvellink.co

Android App To Send Free Message.

Android App To Send Free Message. Hi Friends I Have developed Android app to send Free Message from your Mobile . Now I have developed with only one provider "Way2Sms" . So Download from this link  http://www.exlvis.com/ FreeSmsandroid.aspx   and chk it out and give your Feedback So We can Customize and after we provide with All Providers. http://www.exlvis.com/ FreeSmsandroid.aspx Thanks Rajmal Kulmi Exlvis  Solutions Pvt. Ltd.

PHP Code to Connect Mysql Database

Php mysql connectivity code............. Write below code in connect.php file <?Php ob_start(); $host="localhost:3307"; // Host name $username="root"; // Mysql username $password="sa"; // Mysql password $db_name="dbname"; // Database name $tbl_name="login"; // Table name ?> include your connect file in page include ("config.php"); mysql_connect("$host", "$username", "$password")or die("cannot connect"); mysql_select_db("$db_name")or die("cannot select DB"); execute your query $quer2=mysql_query("SELECT * FROM village"); $noticia2 = mysql_fetch_array($quer2); and that's it ..... www.indbricks.com

Android app main activity Async Task

Hi Friend's recently i have created android application for election management(Voter search and other statics and reports as well as Messaging voter details). I have developed this application for one of my client , Application requirement was storing almost 3 To 4 Lakh Record's in local phone memory without using internet and this was biggest challenge  for bcz I have not studied android and this was my first app in android . I'm Posting some codes which may help you ............  MainActivity.java This is my main activity code  which create Database and do AsynTask like showing progress bar......... package com.example.rajmal.dummy; import java.io.IOException; import android.os.AsyncTask; import android.os.Bundle; import android.annotation.SuppressLint; import android.app.Activity; import android.app.ProgressDialog; import android.content.Context; import android.content.Intent; import android.util.Log; import android.view.Menu; import android....