Sub-Categories: [URL Request Handling] [String Operations]
URL Request Handling
SEO Friendly URLs with PHP
Modify your HTaccess File like this if index.php is your main php File:RewriteEngine OnRewriteBase /RewriteCond %{REQUEST_FILENA... To see full entry click on the link above!
String Operations
Check if String exists in String
Here code to check if a string exists in another string!$string = 'This is a String';if (strpos($string , 'This') !== fa... To see full entry click on the link above!
Example of replacing a sign in a string (works with more than one sign) $newstring = str_replace("TEXT", "NEW TEXT"... To see full entry click on the link above!