Getting details from MySQL DB with PHP
Reblogged from Techya: How to print details from MySQL with PHP : Note : Replace red marked details: Read more… 44 more words
View ArticleWhy Write Command-Line Applications in PHP?
Reblogged from One More Game-Dev and Programming Blog: PHP is well-known to programmers as a popular language for developing web applications. But we can also write command-line PHP applications by...
View ArticleList all uploaded file with Delete option
Reblogged from Web Developer Blog: Hello guys, Today, one of my friend asked me to display the uploaded files from folder with delete option. so i write below code, which i gonna share with u people....
View ArticleHit counter using simple php code
Reblogged from Jalay oza: Hello Developers, Now no need to worry about hit counter that how can you made it or how to put a single code on your header file and get counter on another file I have made...
View ArticleHow to create a simple and efficient PHP cache
When working on php websites made from scratch and without a framework, speed can often be an issue. Caching is extremely useful in order to speed up PHP webpages. In this article, I’ll show you a...
View Article10+ wp-config tricks to boost your WordPress site
If you already installed WordPress, you know the wp-config.php file: this is the file where you set up your database connection info and define your site language. But you can do a lot more things with...
View ArticleAdd css and Jquery in yii framework
<?php $baseUrl = Yii::app()->baseUrl; $cs = Yii::app()->getClientScript(); $cs->registerScriptFile($baseUrl.’/js/colorbox/jquery.colorbox.js’);...
View ArticleQ R Code Generator In Yii Framework
Q R Code Generator In Yii Framework & Save image in folder. step – 1 download the yii extension http://phpqrcode.sourceforge.net/ qrcode.zip save this protected/extensions/qrcode step – 2 Upload...
View ArticleJquery Ajax Cross-site error
This article is all about how to get jQuery AJAX cross-site calls working correctly. It assumes that you operate the server that the cross-site AJAX code is communicating to. When configuring jQuert...
View ArticleSmile face program – PHP GD Function
Simple Smile Face Program Using PHP GD Library Function. code: <?php header (‘Content-type:image/png’); $c=imagecreate(500,500); $bc=imagecolorallocate($c,200,100,100);...
View Article