Ask your own question, for FREE!
Computer Science 7 Online
OpenStudy (yrelhan4):

I am a newbie in PHP. I was trying to retrieve info from my database and store it in a table. I know tables in PHP works like 'echo "" '.. i just wanted to know is there any way i can use rowspan here like we do in html?

OpenStudy (yrelhan4):

|dw:1405578856413:dw| something like this..

OpenStudy (yrelhan4):

How i do i use it? echo "<tr> <td rowspan="2"> </td> </tr>"; gives me a syntax error..

OpenStudy (yrelhan4):

I'll google that and get back to you in case i'm not able to figure it out. Thank you.

OpenStudy (yrelhan4):

And.. why would i have to use colspan too? What am i missing?

OpenStudy (yrelhan4):

I have this PHP code with me. <?php //show information ini_set('display_errors',1); error_reporting(E_ALL); $conn = mysql_connect("localhost","root",""); if(!$conn) { echo mysql_error(); } $db = mysql_select_db("imagestore",$conn); if(!$db) { echo mysql_error(); } $q = "SELECT * FROM animaldata"; $r = mysql_query("$q",$conn); if($r) { while($row=mysql_fetch_array($r)) { //header("Content-type: text/html"); echo "</br>"; echo $row['aname']; echo "</br>"; echo $row['adetails']; echo "</br>"; //$type = "Content-type: ".$row['aphototype']; //header($type); echo "<img src=image.php?ano=".$row['ano']." width=600 height=600/> "; } } else { echo mysql_error(); } ?>

OpenStudy (yrelhan4):

Now what i want to do is.. Display 'aname' in one column. 'adetails' in one column.. and 'aphoto' in the column where rows have been combined. I am not really.sure how i would do that.

OpenStudy (yrelhan4):

And there are multiple entries in my database. So for each while loop, there has to be separate table..

OpenStudy (yrelhan4):

Hmm. I think i can do something with that. Thank you. :)

OpenStudy (lyrae):

You have to escape special characters echo "<tr> <td rowspan=\"2\"> </td> </tr>"; in this case you can also replace the outer " with ' echo '<tr> <td rowspan="2"> </td> </tr>'; (although it's alway better to escape) http://en.wikipedia.org/wiki/Escape_character

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!