473,396 Members | 2,023 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Having trouble with arrays

38
Hi guys

I am trying to compare every row of mysql database against an array. My aim is to compute the euclidean distance. This is my reference array:

Array ( [0] => 2.5 [1] => 120 [2] => 128 [3] => 2 [4] => 1000 )

And i Have written the following to compute first the difference betwenn the element.However my reference array can only be compare from the element of table i.e array[3].

Expand|Select|Wrap|Line Numbers
  1. foreach($array as $i=>$value){
  2.  
  3.             $sum[][$i]=($array[$i+3]- $input_arrays[$i]);
  4.             }
  5.  
Any time i run it it is given wrong results.
The following is my entire code
Expand|Select|Wrap|Line Numbers
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2.     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3.  
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5.  
  6. <head>
  7.   <title>Hello!</title>
  8. </head>
  9.  
  10. <body>
  11.  
  12.  
  13.  
  14. <?php
  15.  
  16.  
  17. ////////////////////////////////////////////////////////
  18. include("mysql_class_2.php");
  19. include("input_A.php");
  20.  
  21. $home=$_REQUEST['usage'];
  22. $outside=$_REQUEST['outside'];
  23. $games=$_REQUEST['games'];
  24. $budget_range=$_REQUEST['Budget_Range'];
  25. $storage=$_REQUEST['storage'];
  26.  
  27.  
  28.   $DB = new mysql();
  29.  
  30.   $host = "localhost";
  31.   $name = "root";
  32.   $pass = "";
  33.   $db = "mytable";
  34.  
  35.   $connection = $DB->Connect($host, $name, $pass, $db);
  36.  
  37. $input_array= new input_A();
  38. $input_arrays=$input_array->Handle_Input($home,$outside,$games,$budget_range,$storage);
  39. print_r($input_arrays);
  40.  
  41.   //define an SQL statement and execute it
  42.   $sql = "SELECT * FROM laptop2";
  43.   $query = $DB->Query($sql);
  44.  
  45.  
  46.  
  47.   //output all rows from the statement
  48.   if($array = $DB->FetchArray($query)){
  49.   //extract($array);
  50.   //echo "<b>All rows</b><br /><br />Title: $title<b>
  51.  // Author: $author<br />";
  52.      $key=0;
  53.     echo "<table border=1>\n";
  54.     echo"<tr><td>ID</td><td>Brand</td><td>Model</td><td>Processor</td>
  55.     <td>Hard Drive</td><td> Graphic card</td>
  56.     <td>Battery life</td><td>price</td></tr>\n";
  57.  
  58.                 echo " <pre>";
  59.                 print_r($array);
  60.                 echo"</pre>";
  61.  
  62.  
  63.             foreach($array as $i=>$value){
  64.  
  65.             $sum[][$i]=($array[$i+3]- $input_arrays[$i]);
  66.             }
  67.  
  68.  
  69.  
  70.    do {
  71.  
  72.  
  73.  
  74.  printf("<tr><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</d><td>%s</d><td>%s</d> </tr>",$array['CODE'],$array['BRAND'],$array['MODEL'],$array['PROCESSOR (Ghz)'],
  75.             $array["STORAGE (GB)"],$array["GRAPHIC CARD (MB)"],$array["BATTERY"],$array["PRICE"]);
  76.  
  77.  
  78.  
  79.     }while($array=$DB->FetchArray($query));
  80.  
  81.  
  82.  
  83.     echo"</table>";
  84.   }
  85.  
  86.  
  87. //////////////////////////////////////////////////////////////////////////////////////////
  88.  
  89.         echo " <pre>";
  90.  
  91.                 print_r($sum);
  92.  
  93.                 echo"</pre>";
  94.  
  95.  // close the connection
  96.   $DB->Close();
  97.  
  98.  
  99.  
  100.  
  101.  
  102. ?>
  103.  
  104. </body>
  105.  
  106. </html>
  107.  
Can anyone spot a mistake?
Thanks
Dec 28 '08 #1
5 1372
pbmods
5,821 Expert 4TB
Heya, poreko.

Given the example array you provided above:
Expand|Select|Wrap|Line Numbers
  1. Array ( [0] => 2.5 [1] => 120 [2] => 128 [3] => 2 [4] => 1000 )
  2.  
What should $sum look like when your script is finished operating on it?
Dec 28 '08 #2
Dormilich
8,658 Expert Mod 8TB
the reference array looks quite strange... (in terms of PHP syntax—at least to me)

according to php.net array keys may be only integers or strings. is "[0]" really one of these? (commas are missing too)

regards
Dec 28 '08 #3
poreko
38
the array :Array ( [0] => 2.5 [1] => 120 [2] => 128 [3] => 2 [4] => 1000 ) must be substracted from the 3rd element of this array:
Expand|Select|Wrap|Line Numbers
  1. Array
  2. (
  3.     [0] => 1
  4.     [CODE] => 1
  5.     [1] => Sony
  6.     [BRAND] => Sony
  7.     [2] => BZ11MN
  8.     [MODEL] => BZ11MN
  9.     [3] => 2.5
  10.     [PROCESSOR (Ghz)] => 2.5
  11.     [4] => 200
  12.     [STORAGE (GB)] => 200
  13.     [5] => 126
  14.     [GRAPHIC CARD (MB)] => 126
  15.     [6] => 2.5
  16.     [BATTERY] => 2.5
  17.     [7] => 500
  18.     [PRICE] => 500
  19. )
Dec 28 '08 #4
pbmods
5,821 Expert 4TB
Try using mysql_fetch_assoc() instead of mysql_fetch_array(). It will make your life a little easier (PHP: mysql_fetch_assoc - Manual).

I'd probably approach it along these lines:
Expand|Select|Wrap|Line Numbers
  1. $sum = array();
  2. $keys = array('PROCESSOR (Ghz)', 'STORAGE (GB)', 'etc.');
  3.  
  4. while( $row = $DB->FetchArray($query) )
  5. {
  6.   foreach( $keys as $key )
  7.   {
  8.     $sum[$key][] = (int) $row[$key] - $input_arrays[$key];
  9.   }
  10. }
  11.  
Dec 29 '08 #5
poreko
38
hi PBMODS thank you for ur suggestion i have tried it but i am having lot of errors
Expand|Select|Wrap|Line Numbers
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2.     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3.  
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5.  
  6. <head>
  7.   <title>Hello!</title>
  8. </head>
  9.  
  10. <body>
  11.  
  12. <?php
  13. include("mysql_class_2.php");
  14. include("input_A.php");
  15.  
  16. $home=$_REQUEST['usage'];
  17. $outside=$_REQUEST['outside'];
  18. $games=$_REQUEST['games'];
  19. $budget_range=$_REQUEST['Budget_Range'];
  20. $storage=$_REQUEST['storage'];
  21.  
  22.  
  23.   $DB = new mysql();
  24.  
  25.   $host = "localhost";
  26.   $name = "root";
  27.   $pass = "";
  28.   $db = "mytable";
  29.  
  30.   $connection = $DB->Connect($host, $name, $pass, $db);
  31.  
  32. $input_array= new input_A();
  33. $input_arrays=$input_array->Handle_Input($home,$outside,$games,$budget_range,$storage);
  34. print_r($input_arrays);
  35.  
  36.   //define an SQL statement and execute it
  37.   $sql = "SELECT * FROM laptop2";
  38.   $query = $DB->Query($sql);
  39.  
  40. $sum = array();
  41. $keys = array('PROCESSOR (Ghz)', 'STORAGE (GB)', 'GRAPHIC CARD (MB)','BATTERY','PRICE');
  42.  
  43. while( $row = $DB->FetchArray($query) )
  44. {
  45.   foreach( $keys as $key )
  46.   {
  47.     $sum[$key][] =  $row[$key] - $input_arrays[$key];
  48.   }
  49. }
  50.  
  51.  
  52.  
  53. ?>
  54.  
  55. </body>
  56.  
  57. </html>
  58.  
  59.  
Dec 29 '08 #6

Sign in to post your reply or Sign up for a free account.

Similar topics

9
suzee_q00
by: suzee_q00 | last post by:
I will admit that lots of times the obvious eludes me and this is most likely one of those times but if anyone has any ideas on what I can do to make this code work, I would greatly appreciate it....
1
by: Doug_J_W | last post by:
I have a Visual Basic (2005) project that contains around twenty embedded text files as resources. The text files contain two columns of real numbers that are separated by tab deliminator, and are...
2
by: ericstein81 | last post by:
I have tried to develop a code using arrays and void functions to take the current earnings of employees and using it to calculate their future income in ten years. This was performed by a 8% percent...
5
by: polas | last post by:
Afternoon everyone. I am having some trouble and thought a few of you might be able to help me... I have a simple function to copy the contents of one array into another - the arguments to the...
24
by: GesterX | last post by:
First of all I'm new to this site but it certainly looks like a place that i will be visiting more often! Onto my problem. I am creating a Hotel Bussiness project in java using BlueJ The...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.