Jump to content

Embedding URL from records from Database and popup


francoisp

Recommended Posts

Consider the following code

 

<?php



include \'db.php\';

$result = mysql_query( "SELECT company_name FROM product_details" )

or die("SELECT Error: ".mysql_error());



$num_rows = mysql_num_rows($result);

echo "These are the companies<P>";

echo "<table border=1 align=\'center\'\'>n";

while ($get_info = mysql_fetch_row($result)){ 

echo "<tr>n";

foreach ($get_info as $field) 

echo "t<td><font face=verdana size=3/>$field</font></td>n";

echo "</tr>n";

}

echo "</table>n";

?>



 

 

Now i want the company names to appear with header rows as well as each company name must then be a url (popup) clicking on that the company details must be displayed ie Company Name, Address Tel no etc. How do I do this ? Any help will be appreciated :?: Any ideas :idea:

 

Thanks

 

Francois

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.