Friday , January 10 2025

admin

Add data in Android ListView

Android ListView is a view which groups several items and display them in vertical scrollable list. The list items are automatically inserted to the list using an Adapter that pulls content from a source such as an array or database.

Read More »

How to upload file on server using php ?

We can easily upload a file or image on the server using this php code. Before upload an image or file we should configure php.ini file. In your “php.ini” file, search the file_uploads directive, and change it to On: file_uploads = On

Read More »

How can start session in php ?

A session in php is started using session_start() function. Globle variables (eg. $_SESSION.) are used for session variables. Now we create a page “example_session.php” and start a session with some session variables :

Read More »