for

search page

251 searched posts found

10 Mar 2014
0.39K
No Comments

1.Remove duplicate values from array – ARRAY_UNIQUE [php] $array = array(0,1,2,3,3,4,5,5,7,8,7,7); $array = array_unique($array); [/php] Result [php] Array ( [0] => 0 [1] => 1 [2] => 2 [3] => 3 [5] => 4 [6] => 5 [8] => 7 [9] => 8 ) [/php] 2.Re-order with random values from

Post in

21 Feb 2014
0.92K
No Comments
PHP Select optgroup from array

I have a array that contains continent and with countries. [php] Array ( [0] => Array ( [continent_name] => asia [country_name] => pakistan [country_value] => 1 ) [1] => Array ( [continent_name] => asia [country_name] => india [country_value] => 2 ) [2] => Array ( [continent_name] => asia [country_name] =>

Post in

15 Dec 2013
0.3K
No Comments

Many times we need to store #array in #database with because may we don’t want to create all specified fields with names in #database table, so we just inserted, and here is example that I want to save whole #array data in database table field mysql. [php] $save_array = array(

Post in

15 Dec 2013
0.54K
No Comments

I was also faced that problem  the unchecked checkboxes cannot submit the data when submit form,  so I decided to a write a jquery, here is my html [html] <input type="checkbox" value="1" checked="checked" named="checked_checkbox" /> <input type="checkbox" value="1" named="un_checked_checkbox" /> [/html] When I using print_r($_POST) ; its just return [php]

Post in

29 Nov 2013
0.31K
No Comments

this function allow you to generate random characters code,function suitable for Generate activation code for newly user account Generate shortenURL code, Generate temporary user password for changing password of account. [php] function generate_special_pass($pass_len = 8, $allow_special_chrs = true) { $allow_chrs = ‘ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz’; $special_chrs = ‘!@#$%^&*()_+’; if($allow_special_chrs) { $pass_chrs = $allow_chrs.$special_chrs;

Post in

16 Nov 2013
1.99K
No Comments
Php convert hash into hashtags from content

Mostly the largest social networks like #facebook , #twitter , #soundcloud and other application are using #hashtag functionality to sort their data and live-feed or content. So I have wrote this  tutorial to convert # from content and convert into a #hashtag 1. Define function named sdtutshashtag with a single parameter $post_content In $post_content

Post in

14 Nov 2013
0.98K
No Comments

In my office where i do job, i am working on various organization’s projects  developed in wordpress and using many of plugins to complete projects sometimes i am think that i will wrote a article about plugins to users can use them on their wordpress site, to save their times

Post in

8 Oct 2013
0.7K
No Comments

The wordpress user’s password hashing is very strong you cannot manually match the entered password with stored in db password because every single time wordpress generate password with random characters, so here is a function to match the wordpress user login password for login functionality or change password functionality in your

Post in

1 Feb 2013
1.63K
No Comments
65 Creative Corporate Business Card Design Ideas P-2

Social Code Business Card by khaledzz9 Media Marketers business cards by Stephen-Coelho Maloon by netdriller Logo by Larrico LiquidWorks Business Card by iTudor Line Corporate Business Card by glenngoh LIMITLESS PRODUCTION CARD by muddassir JK Color WAVE Business Card by KaixerGroup Jahat visit card by rmpc Intelimen Businesscard by Pedrolifero

Post in

7 Jan 2013
1.38K
No Comments
65 Creative Corporate Business Card Design Ideas P-1

Creative Rainbow Business Card by khaledzz9 Rainbow Business Card by khaledzz9 Business Card Alnoh RealEstate by HaithamYussef Business card (for sale) by bnenin Business Card – NA by ivanradosavljevic Business Card – Cascade by trinity9 Business card 2(for sale) by bnenin Business Card 2 by NamfloW Business card 01 by

Post in