How to make a class in php?
No Answer is Posted For this Question
Be the First to Post Answer
How to get number of days between two given dates using PHP?
Is php 5.6 secure?
how to select single row from table and insert into same table as a new record by using a single sql query.
Does winrunner 8.0 or qtp 8.0 supports php
Explain how we can get the number of elements in an array?
What does addslashes do in php?
How do I make a reset button in html?
What is $_ get?
What is variable give example?
What is the current stable version of php?
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', )
I created a cookie with the value like '1A2A',now i want to update this value regularly (about 20 times in a minute) with the value '1A2A3A' , 3A is the new value,new value will vary on the request it may be 3A or 4A or 100A ,some times the cookie is updating with new value but not every time.Can any body suggest the solution