Author Archives: admin

Video Corsi Maya e zBrush – Effetti Speciali

This post is pretty out of the line with respect to this blog’s contents, but as you can see this php blog hasn’t been updated for a while. It will come back, and it will boost some pretty strong new … Continue reading

Posted in Uncategorized | Leave a comment

Flatfile PHP simple CMS tutorial Part 2 the code

This is part two of our simple CMS or blog in flatfile format. We’ll see how to structure the flat file, and the code needed to read it in. This code is not optimized, so it’s easier to understand. As … Continue reading

Posted in Uncategorized | Leave a comment

Simple Flat File PHP CMS or Blog

In this and the next few posts, we’ll see how to create a simple flat file blog or CMS in PHP. I mean a really simple one, useful when you have just a few pages to manage, and installing WordPress … Continue reading

Posted in Uncategorized | Leave a comment

PHP Mini Sites CMS

In this fourth post we’ll have to actually do something useful with our code. Simply add the following at the end of the previous script. if($found) {// set up variables with content $title=$items[0]; $url=$items[1]; $post=$items[2]; $tags=$items[3]; $description=$items[4]; $author=$items[5]; $date=$items[6]; } … Continue reading

Posted in Uncategorized | Leave a comment

PHP Tutorial : Validate email address – simple way with filter_var() function

While browsing php.net without any scope I discovered a very cute & nice way to replace the usual regular expression email checking thing. That way is via filter_var() php function which does the things 10 times faster : <?php $email … Continue reading

Posted in Usefull PHP | Tagged , | Leave a comment

PHP Tutorials : Rename a mysql table

If you want to rename a mysql table via php you just need an extremely simple query like the one it’s following: <?php //include db credentials mysql_query(“rename table TheOldName to TheNewName”); ?>

Posted in Php & MySQL | Tagged , , , , | Leave a comment

Seo Tips & Tricks : Get indexed in google very fast

I’ve heard this question too many times to stay without telling this amazing unique seo trick / tip. You may know that doing social bookmarking, forum posting, getting an article to a popular blog, etc. will help getting indexed faster … Continue reading

Posted in Seo Tips & Tricks | Tagged , , , , , | Leave a comment

PHP Tutorial : Write text and convert into image

The base usage in my mind when I write this tutorial to convert text into image with php is to write email into images dinamically to avoid spammers collecting such addresses from the internet. To run such a script you … Continue reading

Posted in Usefull PHP | Tagged , , , , , | Leave a comment

PHP Tutorial : Get Browser Name & It’s Capabilities

To get browser name just use next thing : <?php print $_SERVER['HTTP_USER_AGENT']; ?> And for all the features of browser user : <?php print_r(get_browser(null, true));//null for user agent &amp; true to return array ?>

Posted in Usefull PHP | Tagged , , , , , , , | Leave a comment

Ventrilo Server Hosting

Ventrilo is a voice over IP program that allows multiple people to communicate with each other over an internet connection. You have a choice of audio codecs like Speex and GSM, Ventrilo is based on the client-server model, the client … Continue reading

Posted in Uncategorized | Tagged | Leave a comment