
Search In
In the code below the str entry widgets that I use the get method to retrieve data from, have been created earlier in the code.
I have tried the following ways to solve the problem:
turning the list into a tuple
using a list literal
ins
Could someone help me write a C program that would let users to input names in any order, then displays the names, sorted in Alphabetical order. You may use any sorting algorithm like Bubble Sort, Selection Sort, Insertion Sort, etc.&n
The concept of optional parameter was introduced in C#4.0. Optional parameters enables you to pass the only required parameters. Each optional parameter has its default value, if no value is passed for this default parameter then its default value wo
1> Read CSV file
When you read the CSV file in php you use the code given below.Here we use the fopen(), fgetcsv() functions to read the csv file.
The below code reads data from a CSV file read.csv
<?php
if (($handle = fopen("read.csv", "r"
I wrote my codes right and based on the codes in (Unity docs)
but still not working , not waiting , any help !
IEnumerator wait(float waitTime)
{
Debug.Log("Wait"); // write this successfully
yield return new WaitForSeconds(waitTime
Thanks To The Internet, there is no barrier or boundary for any web/mobile app. End user of the application can be anybody from anywhere regardless of their religion, social culture, geographical position, time zone, physical or monetary st
If you want to know any mobile device is accessing your website, Then the easy way to detect device is to run a php code.
Lets see the code below :-
<?php
$useragent=$_SERVER['HTTP_USER_AGENT'];
if(preg_match('/(android|bb\d+|meego).+mobile|av
ORDERBY alters the order of the specified column into the table by giving there fields name and arrange them in desc as well as asc ordering but default ordering is asc while in GROUPBY aggregates the records by the specified column which allow to
Update one table with data from another table :-
Some time we need to update more than one column in a SQL table with values from column in another table.So we can achieve this using join. Please refer the below example:-
Table Structure & Value
In Laravel 4.x we can easily use where condition with OR AND OR .Below is the example of this
Example:
User::where(function ($query) {
$query->where('a', '=', 1)
->orWhere('b', '=', 1);
})->where(function ($query) {
$que
