Custom Search

Wednesday, June 18, 2008

earn money at home using the internet

who would want to earn money? every one want to earn. todays i will tell u something about earn money at ur home using internet. there are r many way to earn money in the internet. i'll discuss one of it. mylot is on of the site where u can earn money. its very simple. here u can earn big amount of money. becouse of my article is for the student spacially, thats why they can earn easly 10$ or 20$ in a mounth, i think is enough for a student who lives in bangladesh. at least u can give ur internet bill.

mylot goal is to provide internet users a place to earn money using the web on a day to day basis. It's easy, sign up and start discussions, post responses or comments to current discussions, news or blogs, or refer friends! Referring friends is a great way to earn passive income on myLot. its very simple belive me.

i will discuss more brifly on my next article on it. thanks guys.

Wednesday, May 21, 2008

GPRS/EDGE USES IN UBUNTU

Now a days I can’t think one day without internet. Guys i think you are in the same situation like me. Today’s tutorial for whom, who is new in ubuntu family. To use ubuntu properly u’ve Download packages of ubuntu. So you need a internet connection :-). Thats why i write this tutorial. So let see how to use gprs/edge on ubuntu.

Now follows those steps for connecting internet.

first open your terminal, then type those command step by step..

#Now open your terminal, write this command for access superuser.

———————————————–
~$ su
———————————————–

after giving password ur now access root. For access root see my post on Using Root User in Ubuntu.

#Now write following command
———————————————–
~$ wvdialconf
———————————————–


# Now you have to edit wvdial.conf file. And to edit the wvdial.conf file type command:

———————————————–----------
~$ gedit /etc/wvdial.conf
———————————————–----------




#Edit user name and passwd. clear all semicolons .

#And to start using internet enter command:

———————————————–
~$ wvdial
———————————————–



That’s all. I hope u r using internet properly. I think this the most easiest work to do. If any prob just contact me.

Tuesday, May 13, 2008

How to use mig33 in your pc

it is very simple to use mig33 in your pc. Here i give a sort but usefull tutorial

step 1: You have to download mpower player in ur pc.
step 2: Now unzip it at anywhere in your pc.
step 3: Now you to download java run time mechine. without java run time u can't install mpower player.
step 4: install java run time.
step 5: download mig33.
step 6:Now from the unzipped mpowerplayer package. Open the file player.jar to start the mpowerplayer player
step 7:Now open mppoweplayer.
step 8:Go to file click open now select mig33 jar file to your hard drive.

done your work now use mig33 & enjoy.

Sunday, May 4, 2008

How to Upload File in PHP

It would be nice if you could upload files from a form. Here a complete example how to upload a file in php.

Now start the work…..

1st you have to create a HTML form for uploading file. Download the source code from
here

Then save it as file_upload.html.

Now create the file uploading script, Download the source code for scripts
here
save this as file_upload.php. Run this program.

By using the global PHP $_FILES array you can upload files from a client computer to the remote server.
This the very simple way to uploading file.

Friday, May 2, 2008

আমার এক ভাঙ্গা বাড়ি

"আমি এক ভাঙ্গা বাড়ির ভাঙ্গা ঘরের ভাঙ্গা বারান্দা

আমি পথের মাঝে খুজে পাওয়া টাকা খানা

আমি বিদ্যাসাগর মাইকেলেরই মস্তো বড়ো ভুল

আমি কিশোরীর ঔ হারিয়ে যাওয়া মুক্তো গাথা দুল"

জানি না  কেন যে গানটা আমার এতো ভাল লাগছে। তা হয়তো লিখে বোঝাতে পারবো না। গানটা যেন আমার হৃদয় ছুয়ে গেছে। টপুকে অসংখ্য ধন্যবাদ এমন একটা গান উপহার দেবার জন্য।

Thursday, May 1, 2008

Google Search Tips

“Make google your best friend”

Google is the world largest search engine in the web. There is some tips for searching
in google.
The Google Guide can help you to improve your search results and SERP analysis with less-
Known search Tips
First Things First
In this Google guide I’ll show you some less-known google operators and search tips. Please note that
Since this advanced operators are sometimes used by spam-bot, black hat seos and other people google
Does not loves, you may bump in 403-Access denied screens like the one I showed to you in my
Google hates Doughnuts (and Advanced Search Strings) article.
Don’t be scared if this happens, nothing is wrong with you / your pc / your search, is just google that
It’s a little nervous
Basic Operators
+
Forces words to be included in search results. Useful with stop words that otherwise will be discarded
-
Prevents a search term to show in results, for example searching for doughnut -cream can help you to
Avoid creamy doughnuts
OR
Returns documents with one of the given terms, like doughnut OR donut. You can also use | instead of
OR: doughnut | donut
” “
Using quotes forces google to search for the exact phrase (including stop words), try “doughnut at
Midnight” and doughnut at midnight (actually, using quotes is similar, but not equals, to doughnut-at-
Midnight … it would be interesting to know what is the exact difference in SERP)
~
Allow to search also for synonyms of the given word. searching for doughnut ~tips finds also pages
With the word help or guide etc.
*
Means every word. Try “doughnuts with *”
..
Used to search in a range of numbers, “2…20 doughnuts” will find pages containing “I eat 3 doughnuts
a day” and “I’ll never eat more than 15 doughnuts in a month”
This operators can be combined to create advanced queries, for example “I eat 1..100 doughnut OR
Doughnuts OR donut OR donuts each *”



Tuesday, April 29, 2008

A sample way to connect db in php

$host = ‘localhost’;
$user_name = ‘root’;
$user_password = ”;
$default_db_name = ‘mysql’;

if(!mysql_connect($host,root)) die (”connection failed”);
if(!mysql_select_db ($default_db_name)) die (”can’t select database”);
echo “succesfully connect database”;
?>

This process can connect to mysql databases very easily. For this code not need worry about password. Don’t give any password in ur mysql configure. Save it as phpconnect.php