Deprecated: Assigning the return value of new by reference is deprecated in /home/vpbyanyu/public_html/Blog/wp-includes/cache.php on line 36

Deprecated: Assigning the return value of new by reference is deprecated in /home/vpbyanyu/public_html/Blog/wp-includes/query.php on line 15

Deprecated: Assigning the return value of new by reference is deprecated in /home/vpbyanyu/public_html/Blog/wp-includes/theme.php on line 505
Dave Steer
Dave Steer

Javascript Function: getElementByClass

Filed under: Web Development — January 29, 2007

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Short Open Tag

Filed under: PHP5 — January 26, 2007

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Do you find that most of your pages and functions are not working with PHP5, this is due to the setup of PHP5 in your php.ini file.

If you do not know where your php.ini file is stored create a .php file with the following code.

Then open this file and look for the option Configuration File (php.ini) Path, open this file and search for short_open_tag is the setting is Off then change it to On and restart the server, this should make a great improvement.

Error Message <strong>Notice: Undefined variable:</strong>

Filed under: PHP5

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Wordpress Installation

Filed under: Devices — January 24, 2007

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Simple Javascript Date Validation dd/mm/yyyy

Filed under: CSS / Javascript — January 13, 2007

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Import CSV file to Array with PHP

Filed under: PHP Functions — January 11, 2007

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Creating MySQL Field for Currency / Money Values

Filed under: MySQL

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Javascript Error "If is not defined"

Filed under: Web Development — January 9, 2007

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

PHP Function to Sort an Array by a Key

Filed under: PHP Functions — January 7, 2007

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

On a recent project I was getting some data and wanted to sort the array by one of the keys. This is by far one of the best ways to do it.

To sort an array using this the SortArray() function has 3 variables, the first is the array, the second is the key you wish to sort the arrays by and the third is the order in which you wish to sort

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  // Sample Data
  $Data[] = array('Count' => 324, 'Value' => 'Windows XP');
  $Data[] = array('Count' => 29, 'Value' => 'Macintosh');
  $Data[] = array('Count' => 211, 'Value' => 'Windows 2000');
  $Data[] = array('Count' => 15, 'Value' => 'Unix');
  $Data[] = array('Count' => 5, 'Value' => 'OSF');
 
  Function SortArray($Data, $Field, $Order) {
  	Global $Field;
  	usort($Data, 'SortMatches');
 
  	If ($Order == 'ASC')
  		$NewData = $Data;
  	ElseIf ($Order == 'DESC') {
  		rsort($Data);
  		$NewData = $Data;
  	}
 
  Return $Data;
  }
 
  Function SortMatches($Left, $Right) {
  	Global $Field;
    if ($Left[$Field] == $Right[$Field]) Return 0;
	  Return $Left[$Field] < $Right[$Field] ? -1 : 1;
  }
 
  print_r(SortArray($Data, 'Count', 'ASC'));

Buy Aricept Buy Hydrochloride Buy Topamax Order Singulair Fastin Vitamin A Lioresal Order Allegra Coreg Danazol Cheap Cordarone Buy Canadian Premarin Purchase Differin Purchase Tramadol Order Penisole Cheap Cephalexin Cheap Femcare Order Gasex Purchase Elavil Purchase Codeine Cheap Zantac Buy Xanax Buy Tricor Purchase Parlodel Purchase Azulfidine Cheap Coreg Purchase Geodon Purchase Relafen Purchase Bonnisan Purchase Aldactone Cheap Hydrocodone Geriforte Purchase Lasuna Cheap Altace Antabuse Shallaki Cheapest Ultram Cheap Singulair Prandin Buy Tulasi Order Lopressor Buy Adalat Ambien Brite Purchase Prozac Cheap Glucophage Buy Celebrex Order Loxitane Cheap Tenuates Tricor Purchase Lotensin Cheap Acomplia Cheap Phentrimine Cheap Myambutol Cheap Shallaki Order Hytrin Rumalaya Forte Cheap Cytotec Deltasone Cheap Himcolin Order Plan Order Ismo Cheap Nimotop Purchase Zimulti Cheap Diflucan Order Aleve Order Sumycin Buy Cardizem Purchase Adalat Order Lortab Protonix Order Clarinex Purchase Atrovent Order Tenuate Buy Norvasc Cheap Clomid Cheap Lorazepam Order Styplon Paxil Buy Protonix Buy Lipitor Order Herbolax Cheap Didronel Cheap Zyban Capoten Purchase Ophthacare Buy Eurax Cheap Prinivil Cheap Oxycontin Cheap Endep Order Serevent Buy Lotrisone Cheap Hyzaar Order Levitra Purchase Liv.52 Ultimate Male Cheap Koflet Xenacore Buy Calan Cheap Lasuna Herbal Phentermine Cheap Rimonabant Buy Lotensin Buy Ambien Buy Diflucan Buy Geodon Purchase Accutane Purchase Accupril Buy Shallaki Purchase Evista Cheap Emsam Purchase Levothroid Cheap Imitrex Buy Prograf Cheap Elimite Accupril Order Combivent Cheap Evista Order Vicodin Plendil Purchase Actos Levaquin Purchase Copegus Order Adipex Cheap Starlix Buy Styplon Order Aricept Order Tenormin Dilantin Order Cialis Buy Himcocid Buy Xeloda Buy Prilosec Cheap Actos Purchase Rocaltrol Buy Herbolax Nizoral Buy Chitosan Buy Codeine Purchase Singulair Purchase Motrin Elimite Buy Vantin Lexapro Order Mentax Buy Augmentin Order Clonazepam Zyban Purchase Danazol Cheap Lariam Buy Butalbital Buy Zyvox Order Isordil Lamisil Hair Loss Buy Mentax Order Ephedrine Cheap Avandamet StretchNil Purchase Dilantin Purchase Levlen Nolvadex Cheap Aristocort Purchase Cymbalta Purchase Soma Order Aristocort Rogaine Cheap Phentermine Purchase Diflucan Purchase Prometrium Sinequan Order Monoket Order Procardia Buy Plavix Purchase Desyrel Purchase Ventolin Cheap Aricept Buy Bactroban Order Chitosan Buy Valium Cheap Omnicef Order Liv.52 Cheap Lamisil Order Cozaar Order Celexa Buy Darvocet

How To: Install PHP 5 on IIS5

Filed under: Devices

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148

Deprecated: Function split() is deprecated in /home/vpbyanyu/public_html/Blog/wp-content/plugins/adsense-manager/adsense-manager.php on line 148
Next Page >>>