Jump to content

Database driven tool tips, possibly str_replace?


powelly

Recommended Posts

In the project im currently working on the content of the page is stored in a database in html format, everywhere a word is underlined I need to display a popup onhover and pull the definition of that word from a seperate table.

 

At the moment im looking at using this for the tool tips and have used find and replace to create the tool tips as follows:

 

$content = str_replace("<u>" , "<span class='link'><a href='javascript: void(0)'>" , $content);
$content = str_replace("</u>" , "<span>popup text goes here</span></a></span>" , $content);

 

The issue I now have is how I get the definitions from the table and insert them into the "popup text goes here" bit.

 

Has anyone done anything similar or can you point me in the right direction?

 

Thanks

 

Powelly

 

 

Link to comment
Share on other sites

Unless ive missed something, you first need to find all the of the words that have been underlined. You then need to search your database for their definitions. Only after doing this can you do the replacement. I would do something like:

 

<?php
$string= 'The <u>text</u> that contains <u>all</u> the underlined links';
preg_match_all('|<u>(.*?)</u>|',$string,$matches);//find all the underlined links
$words = $matches[1];//an array of all the words to look up
$original = $matches[0];//an array of all the original text we will replace later

//sort the array - allows us to select all results from the db in one query - we also order the query by the words so we can match them up
sort($original);

$sql = mysql_query("SELECT `definition` FROM `yourtable` WHERE `word` IN ".implode('\'',$words)." ORDER BY `word`");//select all of the words we want, ordering their definition by the word
$definitions = array();
while($row = mysql_fetch_assoc($sql)){//create an array of all the definitions
$definitions[] = "<span class='link'><a href='javascript: void(0)'>".$row['definition']."<span>popup text goes here</span></a></span>";

}
$string = str_replace($original,$replacement,$string);//do the replacement
?>

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.