Comment on this Question and Answer >>>
ASK A QUESTION
More functions PHP Questions
How do I return a value from a function?I'm trying to replace multipl occurences of "[nuber_goes_here]" in a string using preg_replace. $string = 'This is a sentence with a [25] in it.'; echo $string.''; $pattern = '/(\[)(\d+)(\])/'; $replacement = ' '.return_name(
How do I get a variable in a function to retain its value between calls?
How can I access information sent through $_POST on a form?
WHAT IS THE CORRECT WAY TO OPEN THE FILE "time.text" AS READABLE?
