What is a model in php?
What are the correct and the most two common way to start and finish a PHP block of code?
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', )
What is php full form?
How do you measure variables?
Does php require a web server?
How session works (internal processing of session) ?
3 Answers ASD Lab, IPSR Solutions,
Explain what is the function file_get_contents() usefull for?
How do you remove whitespace from the beginning and end of a $string variable?
what is abstrac class? why it is use?
What are php errors?
Which database is best for php?
How to read a file in binary mode?