Skip to content

IT Notes

IT Notes

  • Home
  • Privacy Policy
  • Sample Page
    • Home
    • anand.johari1994
    • Page 88
PHP Interview Questions

What does the unlink() function mean?

The unlink() function is dedicated for file system handling. It simply deletes the file given as entry.

PHP Interview Questions

How do I check if a given variable is empty?

If we want to check whether a variable has a value or not, it is possible to use the empty() function.

PHP Interview Questions

How can we check the value of a given variable is alphanumeric?

It is possible to use the dedicated function, ctype_alnum to check whether it is an alphanumeric value or not.

PHP Interview Questions

How can we check the value of a given variable is a number?

It is possible to use the dedicated function, is_numeric() to check whether it is a number or not.

PHP Interview Questions

How can we access the data sent through the URL with the POST method?

To access the data sent this way, you use the $_POST array. Imagine you have a form field called ‘firstname’ on the form when the user clicks submit to the…

PHP Interview Questions

How can we access the data sent through the URL with the GET method?

To access the data sent via the GET method, we use $_GET array like this: www.url.com?var=value $variable = $_GET; this will now contain 'value'

PHP Interview Questions

What is the difference between mysqli_fetch_object() and mysqli_fetch_array()?

The mysqli_fetch_object() function collects the first single matching record where mysqli_fetch_array() collects all matching records from the table in an array.

PHP Interview Questions

Which function gives us the number of affected entries by a query?

mysqli_affected_rows() return the number of entries affected by an SQL query.

PHP Interview Questions

How is it possible to know the number of rows returned in the result set?

The function mysqli_num_rows() returns the number of rows in a result set.

PHP Interview Questions

How be the result set of Mysql handled in PHP?

The result set can be handled using mysqli_fetch_array, mysqli_fetch_assoc, mysqli_fetch_object or mysqli_fetch_row.

Posts navigation

1 … 87 88 89 … 100

« Previous Page — Next Page »

Recent Posts

  • What is php artisan tinker?
  • What is the use of php artisan make:command?
  • What is Laravel Envoy?
  • What is Broadcasting in Laravel?
  • What is Laravel Echo?

Recent Comments

No comments to show.

Archives

  • July 2025
  • June 2025
  • November 2024
  • August 2024
  • July 2024
  • April 2024
  • September 2023
  • May 2023

Categories

  • Android Interview Questions
  • Angular JS interview Questions
  • C Programming
  • C Programs
  • C++ Programming
  • Codeigniter Interview Questions
  • Computer Network
  • CSS Interview Questions
  • HTML Interview Questions
  • Java
  • Java Interview Questions
  • Javascript Interview Questions
  • jQuery interview Questions
  • Laravel Interview Questions
  • Mobile Application Development
  • MySQL Interview Questions
  • PHP
  • PHP Interview Questions
  • Python
  • Python Interview Questions
  • React JS Interview Questions
  • Software Engineering
  • System Analysis and Design (SAAD)
  • Uncategorized
  • Vtiger CRM

You Missed

Laravel Interview Questions

What is php artisan tinker?

Laravel Interview Questions

What is the use of php artisan make:command?

Laravel Interview Questions

What is Laravel Envoy?

Laravel Interview Questions

What is Broadcasting in Laravel?

IT Notes

Copyright © All rights reserved | Blogus by Themeansar.