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:
- How do you guys master PHP Programming Language? SpoonHead asked the question: Hello! Well, for those experts there,...
- 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...
- Is Ajax a faster programming language than PHP? LUIS III asked the question: I read somewhere that Ajax...
- 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...
- How to learn php programming ? Derek B asked the question: What are some good books....
Filed Under Programming & Design |
Tagged With Images, Php Programming, Programming Language
Comments
3 Responses to “how to link image using PHP Programming language?”
don’t know the names of the table and rows but:
contact me and tell me the details of your table.
That above will show the images retrieved from the DB, but will not link them!
Add:
echo (”" “”);
$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