Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Simple answer is: you can do it with ajax.</p> <p>We can provide the exact code here but you maybe would like to understand the concept so i believe this next video tutorial is a great place to start.</p> <p><a href="http://www.youtube.com/watch?v=nlJBKEhCXqY" rel="nofollow">youtube video tutorial: Loading Dynamic Content on MouseOver </a></p> <p>In the description of the video you can find a download link to the video tutorials and files associated with them. What you need is example number 2.</p> <p>For the example to work you just need to change the config file: connect.php and this database</p> <p>--</p> <h2>-- Database: <code>ajax</code></h2> <hr> <p>--</p> <h2>-- Table structure for table <code>data</code></h2> <p>CREATE TABLE IF NOT EXISTS <code>data</code> ( <code>id</code> int(11) NOT NULL AUTO_INCREMENT, <code>title</code> varchar(45) NOT NULL, <code>fname</code> varchar(45) NOT NULL, <code>lname</code> varchar(45) NOT NULL, PRIMARY KEY (<code>id</code>) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=11 ;</p> <p>--</p> <h2>-- Dumping data for table <code>data</code></h2> <p>INSERT INTO <code>data</code> (<code>id</code>, <code>title</code>, <code>fname</code>, <code>lname</code>) VALUES (1, 'Web Developer', 'Chris', 'Johnson'), (2, 'Web Designer', 'Joe', 'Black'), (3, 'Teacher', 'Jason', 'McIntosh'), (4, 'family man', 'Jake', 'Kawaguchi'), (5, 'Sans Man Card', 'Brett', 'Williams'), (6, 'I don''t know...', 'Topher', 'Howden'), (7, 'Gamer', 'Jason', 'Luzader'), (8, 'Wingman', 'Chuck', 'Strong'), (9, 'Basketball Player', 'Chuck', 'Barkley'), (10, 'Singer', 'Marta', 'Zore');</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload