PHP code examples for beginners
- Read more about PHP code examples for beginners
- Log in to post comments
Hello World
Send Mail
List Files in a Directory
"; }Make a MySQL connection
Send Mail
List Files in a Directory
"; }Make a MySQL connection
Who is the president of USA
What is the name of capital city of UK, Germany, France, Italy, Spain, China, Japan, Russia, Iran, Canada, Australia, ...
What is the most used Operating System
What is the most used browser
What is the long version of VW
What is the most popular car-brand from Japan
What is the color of sky, water, snow, milk, ...
What is the most popular film of Marlon Brando
...
PHP's get_meta_tags function can extract meta-description, meta-keywords etc but cannot find title of the page. Therefore I use following function to catch title of a remote url or a local xhtml file.
function get_page_title($url){ if( !($data = file_get_contents($url)) ) return false; if( preg_match("#(.+)<\/title>#iU", $data, $t)) { return trim($t[1]); } else { return false; } }
How to fetch rss feeds from Bing for a search query?
To stopping content stealing, just create an .htaccess file (or add to the existing file) and paste code below and upload/save it to your main directory(root of your homepage).
RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://(www\.)?example.com(/)?.*$ [NC] RewriteRule \.(bmp|gif|jpg|jpeg|png|mp3|swf|avi)$ - [NC,F,L]
You can replace requested files with a ' don't hotlink' image file.
RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://(www\.)?example.com(/)?.*$ [NC]
Why do I get this error? "You can't show more empty location forms than the maximum number of locations allowed for this content type."
Every webmaster needs some common html tags like a,table,img,div,headings or embed code for windows media player or adobe(formerly macromedia) flash very often. Mostly it is possible to save much time to just easily copy-paste empty tags instead of write them. Therefore I am trying to create a useful list with possible examples. Feel free to add suggestions with examples.