What is htmlspecialchars?
No Answer is Posted For this Question
Be the First to Post Answer
What is php default argument?
If anybody integrate "First Data Global Payment Gateway" in your site?
what is constructor in a class, how it is work, how it is call?
Does php 5 support exceptions?
What is the difference between explode and split?
Where is my php ini file?
How is csrf token generated?
How to join multiple strings stored in an array into a single string?
How to use the COM components in PHP?
How many keywords are there in php?
What does the unset() function mean?
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', )