Explain what is the use of "echo" in php?
Explain difference between urlencode and urldecode?
we have two tables first one is EMPLOYEE having EmpID, EmpNAME, Second table is SALARY table having id, salary Write a query to get name of those person who having more than 10000$ salary
What is a class in php programing?
How check field is empty or not in php?
How to increase session life time using PHP?
How can we access the data sent through the url with the post method?
What is $this in php?
What are the environmental variables?
Is python better than php?
What do you mean by design patterns (php) ?
Tell me what is the importance of "action" attribute in a html form?
How do i explode this string '||25||34||73||94||116||128' i need to have a array like this array ( 0 => '25', 1 => '34', 2 => '73', 3 => '94', 4 => '116', 5 => '128' ) explode("||", $array); didnt work for me i get this array array ( 0 => '', 1 => '25', 2 => '34', 3 => '73', 4 => '94', 5 => '116', 6 => '128', )