Featured Post Today
print this page
Latest Post

C++ | Beginning of Arrays | Lecture 7

beginning of arrays

Lecture 7:

Today we 'll discuss about Arrays in C++.
Array is a data structure, which allows us to collect same size and type of values in single variable. And if you need to call any specific value within array. You need to call its position. Here you will learn that how can we play will array in C++.

 /*  
  Name: Beginning Concept of Arrays  
  Copyright: Sameearticles.blogspot.com  
  Author: Samee Ullah Feroz  
  Date: 28/02/14 16:08  
  Description: Here you will learn about arrays that what is array?  
 */  
 #include <iostream>  
 #include <cmath> //it is for all math functions library  
 int main() //it is actually a function here  
   {  
    using namespace std;  
    int ages[3];  
    ages [0]=21;  
    ages [1] = 19;  
    ages[2] = 9;  
   cout << ages[1] + ages [0] << endl;  
    system("pause");  
    return 0;  
   }   
0 comments

C++ | Return Value in Function | Lecture 6

return value in function

Lecture # 6:

Here you will learn that how to return value in function in C++ programming?
It is a very useful way and important way. You will use it in your programming many times. It works with user define functions. Let's try it.
Here we take dog year example.

 /*  
  Name: Return Value in functions  
  Copyright: SameeArticles.blogspot.com  
  Author: Samee Ullah Feroz  
  Date: 24/02/14 16:17  
  Description: How to return value in function in C++?  
 */  
 #include <iostream>  
 #include <cmath> //it is for all math functions library  
 int dogyears(int); //it is int function and return int   
 int main() //it is actually a function here  
   {  
    using namespace std;  
    int years; // user define variable  
    cout << "enter your dogs age: ";  
    cin >> years;  
    int peopleyears = dogyears(years);  
    cout << "your dog is " << peopleyears << endl;  
    system("pause");  
    return 0;  
   }   
 int dogyears(int dog) //User define function.  
 {  
   return 7 * dog; //it will return a value a variable  
 }  
0 comments

C++ | Arguments In Functions | Lecture 5

arguments of functions
Default arguments in functions allow you to call specific arguments within the specific function.
Here we defined two functions.
pow() And rand()
And we use them to get the specific value.

 /*  
  Name: arguments in functions  
  Copyright: Sameearticles.blogspot.com  
  Author: Samee Ullah Feroz  
  Date: 27/01/14 00:10  
  Description: Using some other functions of mathematics.  
 */  
 #include <iostream>  
 #include <cmath> //it is for all math functions library  
 int main() //it is actually a function here  
   {  
    using namespace std;  
    double num1;  
    num1 = pow(2.0, 4.0); // power function like 2^4  
    cout << "power is = " << num1 << endl;  
    num1 = rand(); // random numbers  
    cout << "Random Number is = " << num1 << endl;  
    system("pause");  
    return 0;  
   }  

0 comments

C# Sharp Reserved Keywords List

reserve keywords
Those keywords, which are predefined in C Sharp Language compiler are called reserved keywords. But you can not use them as identifiers.
C# Sharp Reserved Keywords List Is Given Below:
abstract
catch
default
delegate
explicit
as
char
extern
base
checked
do
false
bool
class
double
finally
break
const
else
fixed
byte
continue
enum
float
case
decimal
event
for
foreach
interface
null
private
sealed
switch
ulong
volatile
goto
internal
object
protected
short
this
unchecked
while
if
is
operator
public
sizeof
throw
unsafe
implicit
lock
out
readonly
stackalloc
true
ushort
in
long
out
ref
static
try
using
namespace
override
return
string
 typeof
virtual
int
new
params
sbyte
struct
uint
void
0 comments

How to delete Yelp business page from Google?

yelp business page
I got new project about to delete Yelp business page from Google search indexing. I researched on this topic and I was come to know that many people are having same problem. There are many competitors in yelp for same business. So they give you bad review that you can drop your rank + clients. Some time, it creates big problem for you because
  1. Yelp locks your account
  2. You cannot delete your reviews
  3. You cannot delete your business page listing
  4. You cannot change your information
So, in this situations you can get bad effect on your business.
Yelp Google Search Results

There are about 1,210,000 results (0.53 seconds) with "How to delete a yelp business page?" keyword. So, now you can imagine it is big problem now a day.
But I have solution for it.
  1. You should create business page on Google Places.
  2. You need to know how to delete yelp listing results from Google search indexing.
    Problems with Google Search
  3. Your listing should be accurate.
  4. You need to submit URL removal request to Google
  5. Wait for better results
  6. Use your country IP and country Gmail account.
  7. Account profile should be in use not fake ID or new one.
Updated
If you think your are still unable to delete your listing from Google indexing. So, you don't need to worry. You can change your listing information. In Yelp Business Listing, only two things you can not change.
  • Business Name / Title
  • Category
And otherwise you can change complete information like address, website, phone.
check it.
Yelp Listing Information

And if you also want to change locked content like Business name and category.
Direct call to yelp department and make a proper reason that you can change your listing title.
Once your detail is changed, change your bio, history, specialties and other information.

Call on 877-924-9357, and press 1 extension to speak with live operator. I'll recommend you to call according to USA office timing like 9:00 AM to 5:00 PM -6:00 GMT Eastern Time Zone.

I hope, it will help you.

0 comments

C++ | Beginning Functions > Using math library functions | Lecture 4

math library functions

 Using Math Library Beginning Functions:

Here you will learn about Math Library Beginning Functions. Like
  1. Cos
  2. Sin
  3. Tan
  4. Sqrt
  5. Pow
  6. Log
  7. And More
But here, I'll just discuss one function that is
sqrt function >> Square root function >> text with the √ symbol
In below given code, you will learn that
1st) You should add
#include <cmath>
into the header. It is mathematics library in C Plus Plus, in which you can find all important math functions.
double num2;
num2 = sqrt (num1);
Here I am taking the square root of num1 variable. likewise, you just need to try same functionality to all math type functions.

 /*  
  Name: beginning functions   
  Copyright: sameearticles.blogspot.com  
  Author: Samee Ullah Feroz  
  Date: 26/01/14 23:49  
  Description: Using Math library functions....  
 */  
 #include <iostream>  
 #include <cmath> //it is for all math functions library  
 int main() //it is actually a function here  
   {  
    using namespace std;  
    double num1;  
    cout << "pick your number...." << endl;  
    cin >> num1;  
    double num2;  
    num2 = sqrt(num1); // variable not in quotes  
    cout << "The square root of = " << num1 << " is " << num2 << endl;  
    system("pause");  
    return 0;  
   }  

Try it.
0 comments

Basic on page optimization techniques for newbies

Basic on page optimization techniques for newbies:

On Page Optimization:

on page optimization tips
Selecting the relevant keywords is extremely crucial. The best keywords are really driving traffic to your web site. Search engine optimization has turned into one of the mainly significant methods of rising user to websites and providing untreated results of searching.
There are various websites with large potential and with good services offers. But the potential of these websites has to be translated into something concrete if the website owners desire to draw more traffic to their sites. Just offering high-quality products would not be sufficient. Your site should have well written content also, that will insert strength to your website by using keywords and expressions enhancing your site's visibility in search engines. To increase the traffic and visibility, on page SEO is necessary. On page SEO is the heart of SEO. With this, any web site cannot get the powerful traffic. And according to my analyze, Getacho Company is going good for on page optimization.

1. Having well researched keywords 

This is a key factor to use the right keywords in your web content in optimizing your web for visibility on search engine. First, you require to search out what the keywords relating to your website are generally used by users when they use the search engines.
Then these keywords would be used in your website's content to optimize your all web pages so they start appearing more in related searches and driving users to your website.

2. Using Meta tags properly

Meta tags are called tags. These are words or phrases which are usually set in an html or web page's code. Meta tags are description tags, title tags, body tags and keyword. Meta tags help search engine crawlers your website properly.

3. Keyword density

Having the correct keywords in content is not the only thing that's vital. Also, your web content must have the keyword density rightly. In a web page your keyword or key phrases must appear the correct number of times.
0 comments

PHP | How to destroy session?

PHP Session
On +Wizpert, Someone asked me that how to destroy session?
Session is used for specific purpose. like
  • Login user
  • Review creation
  • Forms Creation
  • Check Out system
  • And more
In this code you will learn, How to destroy session on logout click?


 <?php  
 $_SESSION = array(); // Oh Sorry here you need to null all sessions  
 setcookie(session_name(), '', time()-60); // here you will set cookies time back to age. like time()-60 mean . 1 minute before now.  
 session_destroy(); // here you will delete session  
 header("Location: login.php"); // here you will be reallocated to login.php page.  
 exit; // page code will be exit.  
 ?>  

I hope this can help you.
0 comments

C++ | How to get user input in C++? Lecture 3

user input

How to get user input in C++?
Here you need to use IOStream function
CIn >>
CIn is used to get input from the user but before it, You need to declare a variable in which you can serve your user value.
Note: "using namespace std" is important to add. It is used to add standard functions.
If you are thinking about
<<
So it is used as concatenation like in PHP dot operator performs

 /*  
  Name: cin function in C++  
  Copyright: sameearticles.blogspot.com  
  Author: Samee Ullah Feroz  
  Date: 26/01/14 23:39  
  Description: How to get user input in C++?  
 */  
 #include <iostream>  
 int main() //it is actually a function here  
   {  
    using namespace std;  
    int saminum; //we need to daclare a variable....  
      cout << "What is your age?" << endl; // << is as concatination remind it.  
      cin >> saminum;  
      cout << "My age is = " << saminum << "\n";   
      saminum = saminum + saminum;  
      cout << "double is = " << saminum << endl << "Enter to close it.";  
    system("pause");  
    return 0;  
   }  

0 comments

C++ | Modify variable and replace its values | Lecture 2

Variable:

Variable is certain type of variable which is liable to vary and change for specific purpose and according to its range.

Types of Variable:

Modify Variable And Replace Its Value:

In Lecture 2 you will learn about variable modification and replacement.
Once you define a variable you can easily use that for print out your data. as
mynumber = 55;  
cout << "My Number is = " << mynumber << endl;  
If you are thinking about
endl
endl (End Line), It is used to break the line.
As you know, why do we use
system("pause");
So we can stop our function anywhere and anytime. 
If you define a variable and show its value.
Again you replace another value to this same variable and again show its value. So, now its value will be changed because you have replaced its value. C++ or any other language always prefer to latest value.
You can also use addition, multiply or any mathematics rules for variables but you need to see its type.
Variable type is very important to describe. Variable is defined according to its range.

 /*  
  Name: Replace variable and modify value  
  Copyright: QWC.Me  
  Author: Samee Ullah Feroz  
  Date: 26/01/14 23:31  
  Description: Replace variable and modify value  
 */  
 #include <iostream>  
 int main()  
   {  
    using namespace std;  
    int mynumber; //we daclare mynumber is as variable and its type is integer.  
      mynumber = 55;  
      cout << "My Number is = ";  
      cout << mynumber << endl << "Please enter to show new value\n";  
      system("pause");  
      //replace variable  
      mynumber = 32;  
      cout << "My Number is = ";  
      cout << mynumber << endl << "Please enter to check addition of both values\n";  
      system("pause");  
      //again replace with arthmatics values.  
      mynumber = 32 + 55;  
      cout << "My Numbers addition is = ";  
      cout << mynumber << endl;  
    system("pause");  
    return 0;  
   }  
You can ask me any question regarding this lecture to Wizpert.

Download Free Perfect Uninstaller

0 comments

How to show output: Basic Syntax and Function: Lecture 1

C++ Output

How to Show Output And Basic Syntax and Function:

In C++ (C Plus Plus), we need to include C++ Libraries then we start body parts. If we need to describe user define functions then we'll describe that between head and body.
IOStream
This library is used for (Input & Output Stream). Because we may need to use many input-output built-in functions within body parts.
int main()
The main body starts here. You need to define your main executed code here.
Cout << "Welcome to Quality Written Codes.";
Cout is used for output the value.  We'll write output value within single or double quotes. It is like Echo Function in PHP
Note: Every line will be terminated with semi-colon ( ; ) is called "Terminator" as PHP
There are two ways to write comments within C++ Code.
#include <iostream> //C++ Library
#include <iostream> /*C++ Library */
  1. You can add comments with two slashes " // "
  2. You can also comment with "/* Quality Written Codes */" Asterisk Slash.
Note: These two methods are same as PHP comment system
Here you will know, How to pause system?
system("Pause");
You need to use this function, where you need to pause system.
Return 0;
It will null to 1st function or execute the function.


 /*  
  Name: Show Output.  
  Copyright: Sameearticles.blogspot.com  
  Author: Samee Ullah Feroz  
  Date: 26/01/14 23:03  
  Description: Here you will learn C++ basic syntax and function  
 */  
 #include <iostream>  // C++ Library
 int main()  
 { //body starts from here  
   using namespace std; //It will call all standard functions of C++ before body  
   cout << "Welcome to Quality Written Codes.";  
   cout << endl; //It is used to break line  
   cout << "\tSupported by Samee Ullah Feroz." << endl; //it is an other method to break line.  
   // "\t" is used to add tab like in PHP language.  
   system("pause"); //It will help to stop this program  
   return 0; // It will end this function.  
 } //body ends here  

Learn Its basics and ask the question about it.
0 comments

C++ (C Plus Plus) Basics : Day wise lectures : Complete C++ Basic Training within 7 days.

Complete C++ Basic Training

C++ (C Plus Plus) Basics:

C++ Basic training is going to start day wise. You can attend C++ lectures from beginning. you can complete your basic training within 7 days. You just need to work out 30 minutes daily. As you can get C++ basic training daily as PHP Training.
0 comments

PHP | Compare Arrays (Indexed Arrays, Associative Arrays, Multidimensional arrays)

PHP | Compare Arrays


 In Arrays lecture, I described about types of Array.
Types of Array in PHP

  1. Indexed arrays - Arrays with numeric index
  2. Associative arrays - Arrays with named keys
  3. Multidimensional arrays - Arrays containing one or more arrays
Here you will come to know that how to compare PHP arrays and how to fetch same value. Sometimes you have to get user detail and compare their attributes. 
Just like
  1. Reviews
  2. Top Contributors 
  3. Levels
  4. Addresses
  5. Cast
  6. Religion
  7. Country
  8. and more
And this question makes you confuse that how to compare and how to fetch same values with simple PHP functions.
The most important thing you need to understand
array_intersect
Concept. Array_Intersect is used to fetch same values between two arrays.
Here you will come to know, How to check arrays values for duplication?

Compare Arrays Code:

(Indexed Arrays, Associative Arrays, Multidimensional arrays)


 <?php  
      $array1 = array('Samee', 'Ullah', 'Feroz');  
      $array2 = array('SEO', 'SMO', 'PPC', 'Samee');  
      $campare = array_intersect($array1, $array2);  
      print_r($campare);  
      echo "<br />";  
      // => Output would be <=  
      // Array ( [0] => Samee )   
      $array1 = array('author' => 'Samee', 'Ullah', 'Feroz');  
      $array2 = array('SEO', 'SMO', 'PPC', 'worker' => 'Samee');  
      $campare = array_intersect($array1, $array2);  
      print_r($campare);  
      echo "<br />";  
      // => Output would be <=  
      // Array ( [author] => Samee )  
      $array1 = array('Samee', 'Ullah', array('Mohammad', 'Feroz', 'Din'));  
      $values = array_values($array1);  
      $array2 = array('SEO', 'SMO', 'PPC', 'Samee', 'Feroz');  
      foreach($values as $array)  
      {  
           $multiarray = array_intersect($array, $array2);  
      }  
      print_r($multiarray);  
      // => Output would be <=  
      // Array ( [1] => Feroz )  
 ?>  


Most Wanted Terms:
  1. php compare arrays
  2. php array compare
  3. php compare array
  4. php compare two arrays
  5. compare arrays php
  6. php compare array values
  7. php compare 2 arrays
  8. compare two arrays php
  9. array compare php
  10. php array of arrays
0 comments

Pakistan Complete City List : xHTML, CSS


Pakistan Complete City List : xHTML, CSS

You can get complete +PAKISTAN City list here. You can use this drop down option in your contact form. 

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
 <html xmlns="http://www.w3.org/1999/xhtml">  
 <head>  
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  
 <title>City list of Pakistan</title>  
 <style>    
      .form{    
            margin:10px auto;    
      }    
      .form label, select{    
            display:inline-block;    
            float:left;    
      }    
      .form label{    
            width:150px;    
      }    
      .body{    
            width:400px;    
            height:50px;    
            background-color:#C33;    
            padding:20px 20px 20px 20px;    
            margin:300px auto;  
            border-top-left-radius:25px;  
            border-bottom-right-radius:25px;  
      }    
 </style>    
 </head>  
 <body>  
 <div class="body">  
   <form class="form">  
     <label id="city"><strong>City list of Pakistan</strong>: </label>  
     <select id="city" name="city">  
      <option value="">- City -</option>  
         <optgroup label="Popular Cities">  
         <option value="faisalabad">Faisalabad</option>  
         <option value="gujranwala">Gujranwala</option>  
         <option value="hyderabad">Hyderabad</option>  
         <option value="islamabad">Islamabad</option>  
         <option value="karachi">Karachi</option>  
         <option value="lahore">Lahore</option>  
         <option value="multan">Multan</option>  
         <option value="peshawar">Peshawar</option>  
         <option value="quetta">Quetta</option>  
         <option value="rawalpindi">Rawalpindi</option>  
       </optgroup>  
       <optgroup label="Other Cities">  
         <option value="abbotabad">Abbotabad</option>  
         <option value="abdul-hakim">Abdul Hakim</option>  
         <option value="adda-jahan-khan">Adda Jahan Khan</option>  
         <option value="adda-shaiwala">Adda Shaiwala</option>  
         <option value="ahmedpur">Ahmedpur</option>  
         <option value="ahmedpur-sial">Ahmedpur Sial</option>  
         <option value="akhora-khattak">Akhora Khattak</option>  
         <option value="ali-chak">Ali Chak</option>  
         <option value="alipur">Alipur</option>  
         <option value="allahabad">Allahabad</option>  
         <option value="amangarh">Amangarh</option>  
         <option value="arifwala">Arifwala</option>  
         <option value="attock">Attock</option>  
         <option value="babri-banda">Babri Banda</option>  
         <option value="badin">Badin</option>  
         <option value="bahawalnagar">Bahawalnagar</option>  
         <option value="bahawalpur">Bahawalpur</option>  
         <option value="balakot">Balakot</option>  
         <option value="bannu">Bannu</option>  
         <option value="bat-khela">Bat Khela</option>  
         <option value="bhai-phayru">Bhai Phayru</option>  
         <option value="bhakkar">Bhakkar</option>  
         <option value="bhalwal">Bhalwal</option>  
         <option value="bhan-saeedabad">Bhan Saeedabad</option>  
         <option value="bhera">Bhera</option>  
         <option value="bhimbar">Bhimbar</option>  
         <option value="bhirya-road">Bhirya Road</option>  
         <option value="bhuwana">Bhuwana</option>  
         <option value="burewala">Burewala</option>  
         <option value="chacklala">Chacklala</option>  
         <option value="chak-jamal">Chak Jamal</option>  
         <option value="chak-jhumra">Chak Jhumra</option>  
         <option value="chak-sawara">Chak Sawara</option>  
         <option value="chak-shezad">Chak Shezad</option>  
         <option value="chakwal">Chakwal</option>  
         <option value="charsada">Charsada</option>  
         <option value="chashma">Chashma</option>  
         <option value="chawinda">Chawinda</option>  
         <option value="chichawatni">Chichawatni</option>  
         <option value="chiniot">Chiniot</option>  
         <option value="chishtian">Chishtian</option>  
         <option value="chitral">Chitral</option>  
         <option value="chohar-jamali">Chohar Jamali</option>  
         <option value="chopper-hatta">Chopper Hatta</option>  
         <option value="chowha-saidan-shah">Chowha Saidan Shah</option>  
         <option value="chowk-azam">Chowk Azam</option>  
         <option value="chowk-maitla">Chowk Maitla</option>  
         <option value="chowk-munda">Chowk Munda</option>  
         <option value="chunian">Chunian</option>  
         <option value="dadakhel">Dadakhel</option>  
         <option value="dadu">Dadu</option>  
         <option value="daharki">Daharki</option>  
         <option value="dandot">Dandot</option>  
         <option value="dargai">Dargai</option>  
         <option value="darya-khan">Darya Khan</option>  
         <option value="daska">Daska</option>  
         <option value="daud-khel">Daud Khel</option>  
         <option value="daulatpur">Daulatpur</option>  
         <option value="daultala">Daultala</option>  
         <option value="depalpur">Depalpur</option>  
         <option value="dera-gazi-khan">Dera Gazi Khan</option>  
         <option value="dera-ismail-khan">Dera Ismail Khan</option>  
         <option value="dera-murad-jamali">Dera Murad Jamali</option>  
         <option value="dera-nawab-sahib">Dera Nawab Sahib</option>  
         <option value="digri">Digri</option>  
         <option value="dijkot">Dijkot</option>  
         <option value="dina">Dina</option>  
         <option value="dinga">Dinga</option>  
         <option value="dir">Dir</option>  
         <option value="doaba">Doaba</option>  
         <option value="domeli">Domeli</option>  
         <option value="dudial">Dudial</option>  
         <option value="dunyapur">Dunyapur</option>  
         <option value="eminabad">Eminabad</option>  
         <option value="esa-khel">Esa Khel</option>  
         <option value="estate-l-m-factory">Estate L.M. Factory</option>  
         <option value="farooqabad">Farooqabad</option>  
         <option value="fateh-jang">Fateh Jang</option>  
         <option value="fatehpur">Fatehpur</option>  
         <option value="fazilpur">Fazilpur</option>  
         <option value="ferozwala">Ferozwala</option>  
         <option value="fiza-goth">Fiza Goth</option>  
         <option value="fortabbas">Fortabbas</option>  
         <option value="gadoon-amazai">Gadoon Amazai</option>  
         <option value="gaggo-mandi">Gaggo Mandi</option>  
         <option value="gakhar-mandi">Gakhar Mandi</option>  
         <option value="gambet">Gambet</option>  
         <option value="gambit">Gambit</option>  
         <option value="garh-maharaja">Garh Maharaja</option>  
         <option value="garh-more">Garh More</option>  
         <option value="garhi-yaseen">Garhi Yaseen</option>  
         <option value="gari-habibullah">Gari Habibullah</option>  
         <option value="ghari-mori">Ghari Mori</option>  
         <option value="gharo">Gharo</option>  
         <option value="ghazi">Ghazi</option>  
         <option value="ghaziabad">Ghaziabad</option>  
         <option value="ghotki">Ghotki</option>  
         <option value="gilgit">Gilgit</option>  
         <option value="gojar-khan">Gojar Khan</option>  
         <option value="gojra">Gojra</option>  
         <option value="goular-khel">Goular Khel</option>  
         <option value="guddu">Guddu</option>  
         <option value="gujjar-khan">Gujjar Khan</option>  
         <option value="gujrat">Gujrat</option>  
         <option value="gwadar">Gwadar</option>  
         <option value="hafizabad">Hafizabad</option>  
         <option value="hala">Hala</option>  
         <option value="hangu">Hangu</option>  
         <option value="haripur">Haripur</option>  
         <option value="hariwala">Hariwala</option>  
         <option value="haroonabad">Haroonabad</option>  
         <option value="harrapa">Harrapa</option>  
         <option value="hasilpur">Hasilpur</option>  
         <option value="hassan-abdal">Hassan Abdal</option>  
         <option value="hattar">Hattar</option>  
         <option value="haveli-lakha">Haveli Lakha</option>  
         <option value="havelian">Havelian</option>  
         <option value="hayatabad">Hayatabad</option>  
         <option value="hazro">Hazro</option>  
         <option value="head-marala">Head Marala</option>  
         <option value="hub">Hub</option>  
         <option value="hub-indus-estate">Hub Indus Estate</option>  
         <option value="hunza">Hunza</option>  
         <option value="jaccobabad">Jaccobabad</option>  
         <option value="jaja-abbasian">Jaja Abbasian</option>  
         <option value="jalalpur-jatan">Jalalpur Jatan</option>  
         <option value="jalalpur-priwala">Jalalpur Priwala</option>  
         <option value="jamal-din-wali">Jamal Din Wali</option>  
         <option value="jampur">Jampur</option>  
         <option value="jamrud-road">Jamrud Road</option>  
         <option value="jamshoro">Jamshoro</option>  
         <option value="jandanwala">Jandanwala</option>  
         <option value="jandiala-sher-khan">Jandiala Sher Khan</option>  
         <option value="janpur">Janpur</option>  
         <option value="jaranwala">Jaranwala</option>  
         <option value="jatoi">Jatoi</option>  
         <option value="jauharabad">Jauharabad</option>  
         <option value="jehangira">Jehangira</option>  
         <option value="jehanian">Jehanian</option>  
         <option value="jhal-magsi">Jhal Magsi</option>  
         <option value="jhand">Jhand</option>  
         <option value="jhang">Jhang</option>  
         <option value="jhatta-bhutta">Jhatta Bhutta</option>  
         <option value="jhelum">Jhelum</option>  
         <option value="jhudo">Jhudo</option>  
         <option value="kabirwala">Kabirwala</option>  
         <option value="kacha-khooh">Kacha Khooh</option>  
         <option value="kahroor-lalisan">Kahroor Lalisan</option>  
         <option value="kahror-pakka">Kahror Pakka</option>  
         <option value="kahuta">Kahuta</option>  
         <option value="kakul">Kakul</option>  
         <option value="kakur-town">Kakur Town</option>  
         <option value="kala-bagh">Kala Bagh</option>  
         <option value="kala-shah-kaku">Kala Shah Kaku</option>  
         <option value="kalaswala">Kalaswala</option>  
         <option value="kallar-syedan">Kallar Syedan</option>  
         <option value="kallur-kot">Kallur Kot</option>  
         <option value="kamalia">Kamalia</option>  
         <option value="kamalia-musa">Kamalia Musa</option>  
         <option value="kamber-ali-khan">Kamber Ali Khan</option>  
         <option value="kamoke">Kamoke</option>  
         <option value="kamra">Kamra</option>  
         <option value="kandh-kot">Kandh Kot</option>  
         <option value="kandiaro">Kandiaro</option>  
         <option value="karak">Karak</option>  
         <option value="kashmir">Kashmir</option>  
         <option value="kashmore">Kashmore</option>  
         <option value="kasowal">Kasowal</option>  
         <option value="kasur">Kasur</option>  
         <option value="kazi-ahmed">Kazi Ahmed</option>  
         <option value="khairpur">Khairpur</option>  
         <option value="khanbela">Khanbela</option>  
         <option value="khandabad">Khandabad</option>  
         <option value="khanewal">Khanewal</option>  
         <option value="khangarh">Khangarh</option>  
         <option value="khanpur">Khanpur</option>  
         <option value="khanqah-dogran">Khanqah Dogran</option>  
         <option value="khanqah-sharif">Khanqah Sharif</option>  
         <option value="kharian">Kharian</option>  
         <option value="khewra">Khewra</option>  
         <option value="khoski">Khoski</option>  
         <option value="khudian-khas">Khudian Khas</option>  
         <option value="khurianwala">Khurianwala</option>  
         <option value="khushab">Khushab</option>  
         <option value="khushal-kot">Khushal Kot</option>  
         <option value="khuzdar">Khuzdar</option>  
         <option value="kohat">Kohat</option>  
         <option value="kolo-tarar">Kolo Tarar</option>  
         <option value="kot-addu">Kot Addu</option>  
         <option value="kot-bunglow">Kot Bunglow</option>  
         <option value="kot-ghulam-muhammad">Kot Ghulam Muhammad</option>  
         <option value="kot-mithan">Kot Mithan</option>  
         <option value="kot-radha-kishan">Kot Radha Kishan</option>  
         <option value="kot-sultan">Kot Sultan</option>  
         <option value="kotla">Kotla</option>  
         <option value="kotla-arab-ali-khan">Kotla Arab Ali Khan</option>  
         <option value="kotla-jam">Kotla Jam</option>  
         <option value="kotla-patdan">Kotla Patdan</option>  
         <option value="kotli-loharan">Kotli Loharan</option>  
         <option value="kotli-sattian">Kotli Sattian</option>  
         <option value="kotri">Kotri</option>  
         <option value="kumboh">Kumboh</option>  
         <option value="kunjah">Kunjah</option>  
         <option value="kunri">Kunri</option>  
         <option value="laki-marwat">Laki Marwat</option>  
         <option value="lala-musa">Lala Musa</option>  
         <option value="lala-rukh">Lala Rukh</option>  
         <option value="lalian">Lalian</option>  
         <option value="lalsohanra">Lalsohanra</option>  
         <option value="larkana">Larkana</option>  
         <option value="lasbella">Lasbella</option>  
         <option value="lawrencepur">Lawrencepur</option>  
         <option value="layyah">Layyah</option>  
         <option value="liaquatpur">Liaquatpur</option>  
         <option value="lodhran">Lodhran</option>  
         <option value="lower-dir">Lower Dir</option>  
         <option value="luddan">Luddan</option>  
         <option value="machi-goth">Machi Goth</option>  
         <option value="madina">Madina</option>  
         <option value="mailsi">Mailsi</option>  
         <option value="makhdoom-aali">Makhdoom Aali</option>  
         <option value="makli">Makli</option>  
         <option value="malakand-agency">Malakand Agency</option>  
         <option value="malakwal">Malakwal</option>  
         <option value="mamunkanjan">Mamunkanjan</option>  
         <option value="mandi-bahauddin">Mandi Bahauddin</option>  
         <option value="mandi-sadiq-gunj">Mandi Sadiq Gunj</option>  
         <option value="mandra">Mandra</option>  
         <option value="manga-mandi">Manga Mandi</option>  
         <option value="mangal-sada">Mangal Sada</option>  
         <option value="mangi">Mangi</option>  
         <option value="mangla">Mangla</option>  
         <option value="mangowal">Mangowal</option>  
         <option value="manoabad">Manoabad</option>  
         <option value="manshera">Manshera</option>  
         <option value="mardan">Mardan</option>  
         <option value="mari-indus">Mari Indus</option>  
         <option value="mastoi">Mastoi</option>  
         <option value="matiari">Matiari</option>  
         <option value="matli">Matli</option>  
         <option value="mehar">Mehar</option>  
         <option value="mehmood-kot">Mehmood Kot</option>  
         <option value="mehrabpur">Mehrabpur</option>  
         <option value="mian-chunnu">Mian Chunnu</option>  
         <option value="mianwali">Mianwali</option>  
         <option value="minchinabad">Minchinabad</option>  
         <option value="mingora">Mingora</option>  
         <option value="mir-ali">Mir Ali</option>  
         <option value="miran-shah">Miran Shah</option>  
         <option value="mirpur">Mirpur</option>  
         <option value="mirpur-khas">Mirpur Khas</option>  
         <option value="mirpur-mathelo">Mirpur Mathelo</option>  
         <option value="mohanjo-daro">Mohanjo Daro</option>  
         <option value="more-kunda">More Kunda</option>  
         <option value="morgah">Morgah</option>  
         <option value="moro">Moro</option>  
         <option value="mubarikpur">Mubarikpur</option>  
         <option value="muridkay">Muridkay</option>  
         <option value="murree">Murree</option>  
         <option value="musafir-khana">Musafir Khana</option>  
         <option value="mustung">Mustung</option>  
         <option value="muzaffarabad">Muzaffarabad</option>  
         <option value="muzaffargarh">Muzaffargarh</option>  
         <option value="nankana-sahib">Nankana Sahib</option>  
         <option value="narang-mandi">Narang Mandi</option>  
         <option value="narowal">Narowal</option>  
         <option value="naseerabad">Naseerabad</option>  
         <option value="naudero">Naudero</option>  
         <option value="naukot">Naukot</option>  
         <option value="nawab-shah">Nawab Shah</option>  
         <option value="nilore">Nilore</option>  
         <option value="noor-kot">Noor Kot</option>  
         <option value="noorpur-noranga">Noorpur Noranga</option>  
         <option value="noorpur-thal">Noorpur Thal</option>  
         <option value="nowshera">Nowshera</option>  
         <option value="nowshera-cantt">Nowshera Cantt</option>  
         <option value="nowshero-feroz">Nowshero Feroz</option>  
         <option value="okara">Okara</option>  
         <option value="padidan">Padidan</option>  
         <option value="pakpattan-sharif">Pakpattan Sharif</option>  
         <option value="panjan-kisan">Panjan Kisan</option>  
         <option value="panjgoor">Panjgoor</option>  
         <option value="pannu-aqil">Pannu Aqil</option>  
         <option value="pasni">Pasni</option>  
         <option value="pasroor">Pasroor</option>  
         <option value="patoki">Patoki</option>  
         <option value="phagwar">Phagwar</option>  
         <option value="phalia">Phalia</option>  
         <option value="phool-nagar">Phool Nagar</option>  
         <option value="piaro-goth">Piaro Goth</option>  
         <option value="pind-dadan-khan">Pind Dadan Khan</option>  
         <option value="pindi-bhattian">Pindi Bhattian</option>  
         <option value="pindi-gheb">Pindi Gheb</option>  
         <option value="piplan">Piplan</option>  
         <option value="pir-mahal">Pir Mahal</option>  
         <option value="pishin">Pishin</option>  
         <option value="qalandarabad">Qalandarabad</option>  
         <option value="qasba-gujrat">Qasba Gujrat</option>  
         <option value="qazi-ahmed">Qazi Ahmed</option>  
         <option value="quaidabad">Quaidabad</option>  
         <option value="qutabpur">Qutabpur</option>  
         <option value="rabwah">Rabwah</option>  
         <option value="rahimyar-khan">Rahimyar Khan</option>  
         <option value="rahwali">Rahwali</option>  
         <option value="raiwind">Raiwind</option>  
         <option value="rajana">Rajana</option>  
         <option value="rajanpur">Rajanpur</option>  
         <option value="rang-pur">Rang pur</option>  
         <option value="rangoo">Rangoo</option>  
         <option value="ranipur">Ranipur</option>  
         <option value="ratto-dero">Ratto Dero</option>  
         <option value="rawala-kot">Rawala Kot</option>  
         <option value="rawat">Rawat</option>  
         <option value="renala-khurd">Renala Khurd</option>  
         <option value="risalpur">Risalpur</option>  
         <option value="rohri">Rohri</option>  
         <option value="sadiqabad">Sadiqabad</option>  
         <option value="safdarabad">Safdarabad</option>  
         <option value="sagri">Sagri</option>  
         <option value="sahiwal">Sahiwal</option>  
         <option value="saidu-sharif">Saidu Sharif</option>  
         <option value="sajawal">Sajawal</option>  
         <option value="sakrand">Sakrand</option>  
         <option value="samanabad">Samanabad</option>  
         <option value="sambrial">Sambrial</option>  
         <option value="samma-satta">Samma Satta</option>  
         <option value="samundri">Samundri</option>  
         <option value="sanghar">Sanghar</option>  
         <option value="sanghi">Sanghi</option>  
         <option value="sangla-hill">Sangla Hill</option>  
         <option value="sanjwal">Sanjwal</option>  
         <option value="sara-e-alamgir">Sara-e-Alamgir</option>  
         <option value="sargodha">Sargodha</option>  
         <option value="satiana">Satiana</option>  
         <option value="serai-alamgir">Serai Alamgir</option>  
         <option value="shadiwal">Shadiwal</option>  
         <option value="shah-jamal">Shah Jamal</option>  
         <option value="shah-kot">Shah Kot</option>  
         <option value="shahdad-kot">Shahdad Kot</option>  
         <option value="shahdadpur">Shahdadpur</option>  
         <option value="shahpur-chakar">Shahpur Chakar</option>  
         <option value="shamsabad">Shamsabad</option>  
         <option value="shankiari">Shankiari</option>  
         <option value="shedani-sharif">Shedani Sharif</option>  
         <option value="sheikhupura">Sheikhupura</option>  
         <option value="shikarpur">Shikarpur</option>  
         <option value="shor-kot">Shor Kot</option>  
         <option value="shujabad">Shujabad</option>  
         <option value="sialkot">Sialkot</option>  
         <option value="sibi">Sibi</option>  
         <option value="sihala">Sihala</option>  
         <option value="sikandarabad">Sikandarabad</option>  
         <option value="sillanwali">Sillanwali</option>  
         <option value="sita-road">Sita Road</option>  
         <option value="skardu">Skardu</option>  
         <option value="sohawa-district-daska">Sohawa District Daska</option>  
         <option value="sohawa-district-jhelum">Sohawa District Jhelum</option>  
         <option value="sukkur">Sukkur</option>  
         <option value="swabi">Swabi</option>  
         <option value="swat">Swat</option>  
         <option value="takhtbai">Takhtbai</option>  
         <option value="talagang">Talagang</option>  
         <option value="talamba">Talamba</option>  
         <option value="tando-adam">Tando Adam</option>  
         <option value="tando-allahyar">Tando Allahyar</option>  
         <option value="tando-jam">Tando Jam</option>  
         <option value="tando-muhammad-khan">Tando Muhammad Khan</option>  
         <option value="tank">Tank</option>  
         <option value="taranda-muhammad-pannah">Taranda Muhammad Pannah</option>  
         <option value="tarbela">Tarbela</option>  
         <option value="taunsa-sharif">Taunsa Sharif</option>  
         <option value="taxila">Taxila</option>  
         <option value="thal">Thal</option>  
         <option value="tharo-shah">Tharo Shah</option>  
         <option value="thatta">Thatta</option>  
         <option value="thing-jattan-more">Thing Jattan More</option>  
         <option value="tibba-sultanpur">Tibba Sultanpur</option>  
         <option value="tobatek-singh">Tobatek Singh</option>  
         <option value="topi">Topi</option>  
         <option value="toru">Toru</option>  
         <option value="turbat">Turbat</option>  
         <option value="ubaro">Ubaro</option>  
         <option value="ubauro">Ubauro</option>  
         <option value="ugoki">Ugoki</option>  
         <option value="umar-kot">Umar Kot</option>  
         <option value="usta-muhammad">Usta Muhammad</option>  
         <option value="vehari">Vehari</option>  
         <option value="village-sunder">Village Sunder</option>  
         <option value="wah-cantt">Wah Cantt</option>  
         <option value="wahi-hussain">Wahi Hussain</option>  
         <option value="wan-radha-ram">Wan Radha Ram</option>  
         <option value="warah">Warah</option>  
         <option value="warburton">Warburton</option>  
         <option value="wazirabad">Wazirabad</option>  
         <option value="yazman-mandi">Yazman Mandi</option>  
         <option value="zafarwal">Zafarwal</option>  
         <option value="zahir-pir">Zahir Pir</option>  
       </optgroup>  
    </select>  
  </form>  
 </div>  
 </body>  
 </html>  

Get All Country List Here. You can also use it in your contact form.

0 comments
 
Copyright © 2011-2026. Samee Articles - All Rights Reserved
Proudly powered by Blogger