Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I got following array

Array (
    [G_ID] => 11
    [Username] => student
    [Password] => admin
    [gender] => m
    [email] => dsfsdas
    [phone] => hgjhg
    [address] => surat
    [birthdate] => 
    [interest] => 
    [goal] => 
    [User_Type] => student
    [Conform] => 1
    [l_name] => student
    [f_name] => student
    [clg_name] => scatt
    [branch] => cseq
    [avatar] => 11avatarJaguar_Logo.jpg
    [Student_Master_ID] => 11
    [Staff_Master_ID_Staff_Master] => 
    [Branch] => cseq
    [Semester] => 8
    [PEN] => 090490131013
    [SPI_1] => 6.50
    [SPI_2] => 5.20
    [SPI_3] => 7.5
    [SPI_4] => 6.5
    [SPI_5] => 8.0
    [SPI_6] => 7.1
    [SPI_7] => 8.0
    [SPI_8] => 0
    [0] => 6.50
    [max(SPI_1)] => 6.50
    [1] => 8.0
    [max(SPI_2)] => 8.0
    [2] => 7.5
    [max(SPI_3)] => 7.5
    [3] => 6.5
    [max(SPI_4)] => 6.5
    [4] => 8.0
    [max(SPI_5)] => 8.0
    [5] => 7.1
    [max(SPI_6)] => 7.1
    [6] => 8.0
    [max(SPI_7)] => 8.0
    [7] => 0
    [max(SPI_8)] => 0
) 

I want to print this max(SPI_1) value. How can I print this value?

share|improve this question
3  
Please please please format your code samples so that they are easier to read... – Lix Jan 16 at 20:28
@joh - I'm not sure your edit helps much :/ – Lix Jan 16 at 20:28
What have you tried? – Rocket Hazmat Jan 16 at 20:28
@jeroen: That's kinda what's posted here (ok, it's a print_r output, but still). – Rocket Hazmat Jan 16 at 20:31
@Rocket Hazmat Okay, I guess I'm just used to the var_dump output and seeing the types and values clearly listed.... – jeroen Jan 16 at 20:35

2 Answers

You should read up on arrays.

//    key     => value
// max(SPI_1) => 6.50

With that knowledge, you would just do:

echo $student["max(SPI_1)"];
share|improve this answer
No its not work, i got solution.. i copy this value in another array like $spi['one'] = $student['max(SPI_1)']; and now $spi['one']; can be print. – vishal Jan 17 at 10:59
@vishal That makes zero sense. – Supericy Jan 17 at 16:40

Assuming array is stored as $array

echo $array['max(SPI_1)'];

Would this not work?

share|improve this answer
That should work :) – Rocket Hazmat Jan 16 at 20:36
no its not work.. – vishal Jan 17 at 11:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.