Showing posts with label how to. Show all posts
Showing posts with label how to. Show all posts

Saturday, April 19, 2014

How To Convert Date & Time to String In ASP.NET?

How To Convert Date & Time to String In ASP.NET?

In ASP.NET date & time can convert into string data type by using Convert.ToDateTime() function. Their are 18 overloaded method available for Convert.ToDateTime()function.
Ex:-

DateTime startDate = Convert.ToDateTime("26-5-1190");

How to Retrieve Record from Two Tables in PHP??

How to Retrieve Record from Two Tables in PHP??

When you want to retrieve record from different table of same database in PHP then don’t worry.
Here our team give you solution for that problem.
You can easily retrieve record from two table using join query. There are three types of join available in SQL.

Thursday, April 10, 2014

How To Upload Image To Server In PHP?


How To Upload Image To Server In PHP?


To upload image or any other file in php you can use move_uploaded_file() function.

How To Retrieve Record in Ascending or Descending Order in PHP?


How To Retrieve Record in Ascending or Descending Order in PHP? 

To retrieve record in ascending or descending order in php ORDER BY clues use.
Rows which retrieved from the table will be sorted in either ascending or descending order.

How To Get Unique Record From Table In Php??

How To Get Unique Record From Table In Php??

To get unique record from table you can use DISTINCT keyword in query.
Using DISTINCT keyword you can get unrepeated records from the table

Tuesday, April 08, 2014

How to Retrieve Record from Two Tables in PHP??


When you want to retrieve record from different table of same database in PHP then don’t worry.

Here our team give you solution for that problem.

You can easily retrieve record from two table using join query. There are three types of join available in SQL.