Category Archives: Php Examples Tutorials
How to Send Receive HTML form data from one page to another using PHP
How to create multidimensional array in php dynamically
Use str_replace function in php to replace string word

How to replace given characters inside string variable using user given in php. Str_replace() function is used to replace characters of a string variable with user given characters and update the string after replacing process. So here is the complete step by step tutorial for Use str_replace function in php…
Use strpos function in php to find specific text within string

Search given text within string variable using strpos() string function in php. Strpos() method is used to search specific text within the given string variable and if this function finds the given character or string then it will return the characters position in numeric form. So here is the complete…
Reverse string without strrev function in php using looping control

Set string variable into reverse form using for loop and strlen() method. Normally string functions gives us the facility to directly set string variable into reverse form but some times web developer needs to reverse string without using strrev() function in their programs in php coding page. So here is…