Jump to content

abe_sapien1

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

abe_sapien1's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Depends on how you learn , i started with php books you can find at any book store. I recommend this one for a pure newbie, helps with the stuff a lot people leave out: PHP for the World Wide Web : Visual QuickStart Guide by Larry Ullman I do have friends who learned how to code php purely from just doing it and looking on the web so like i said depends on how you learn. Eventually you'll get most of your info on php.net. if its totally new to you some of the stuff will seem like greek but if you stick with it long enough you'll get it.
  2. Hi there, It appears you arent defining those values correctly. try this [code]$row = mysql_fetch_array($result); echo $row['title'];  <-- notice the quotes ?> <?php   # I am assuming below your column titles are 'Manufacturer' and 'Warranty' etc ...            ?> <table border="1" cellpadding="3" cellspacing="3"> <tr> <th align="left">Manufacturer</th> <td align="left"><?php echo($row['Manufacturer']) ?></td> </tr> <tr> <th align="left">Warranty</th> <td align="left"><?php echo($row['Warranty']) ?></td> </tr> <tr> <th align="left">Weight</th> <td align="left"><?php echo($row['Weight']) ?></td> </tr> </table>[/code] best of luck to ya hope that helped
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.