Whhat is a Functions
A function is a block of statement, A function will not execute immediately when we run, we have to call the function to execute
example
<?php
function name(){ // for creating a function
echo "My name is -----";
}
name(); // calling the function
| Is This Answer Correct ? | 4 Yes | 0 No |
How can you make a connection with mysql server using php?
What are the __construct() and __destruct() methods in a php class?
Is it easy to learn php?
What is session and Cokkies . How it works . tell some thing about Session_id()
1 Answers DVS, Net Solution, PVWEBCO,
Explain difference between urlencode and urldecode?
How to enable error reporting in php?
What will replacement of localhost username and password on submission a site
What is encapsulation in php with example?
What are the correct and the most two common way to start and finish a PHP block of code?
How to create a mysql connection?
Which of the following represents the proper way to set a session variable? Answer: a. $_SESSION['foo'] = 'bar'; b. session_start(); c. session_set_save_handler ('myopen', 'myclose', 'myread', 'mywrite', 'mydelete', 'mygarbage'); d. $foo = $_SESSION['foo']; 2.When administering MySQL, you should make the data directory accessible via the operating system 3.which statement can be used to determine how the optimizer resolves a query
What is a string in php?