How to check curl is enabled or not in PHP
No Answer is Posted For this Question
Be the First to Post Answer
How to download and install php for windows?
Which function is used in php to count the total number of rows returned by any query?
Why is php used for web development?
Explain me what is x+ mode in fopen() used for?
What are the different tables(engine) present in mysql, which one is default?
Do you know design patterns. List few?
Do loops php?
What is namespaces in PHP?
What is the basic syntax of Php?
Tell me how do you execute a php script from the command line?
How can we create a database using PHP and mysql?
4 Answers Rushmore Consultancy,
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', )