| how to link image using PHP Programming language?

how to link image using PHP Programming language?

Merlinda V asked the question:


how can i link an image using PHP Programming language by
looping statement.
ea. i have a table with 4 rows and 5 cols with images thumbnails with link..

Related posts:

  1. How do you guys master PHP Programming Language? SpoonHead asked the question: Hello! Well, for those experts there,...
  2. which scripting language is the most used when it comes to Web Programming:ASP.NET,PHP,Perl,RubyonRails? Amitanshu G asked the question: Which scripting language is the...
  3. Is Ajax a faster programming language than PHP? LUIS III asked the question: I read somewhere that Ajax...
  4. what is php programming? will i need to be well educated in it to make my own website? attitudesl22 asked the question: i am confused because if it...
  5. How to learn php programming ? Derek B asked the question: What are some good books....

Filed Under Programming & Design |

Tagged With , ,

Comments

3 Responses to “how to link image using PHP Programming language?”

  1. shedokan on June 16th, 2008 11:47 am

    don’t know the names of the table and rows but:

    contact me and tell me the details of your table.

  2. just "JR" on June 17th, 2008 1:22 pm

    That above will show the images retrieved from the DB, but will not link them!
    Add:
    echo (”" “”);

  3. Shree J on June 19th, 2008 5:58 am

    $sql=mysql_query(”select * from tablename”);
    while($row=mysql_fetch_array($sql)){
    echo “”;

    }
    in this PHP code use your table structure for 4 rows and 5 cols