php - changing data in a div -


first off let me state i'm not web developer , i'm learning on way. might not possible or might horrible idea. if please let me know , if not please point me in right direction.

i developing website , got of foundation done it, 1 section. section i'm working on have little data 1 set of data or have 40+ sets of data. i'm trying come way of displaying data. oh sets mean @ min. have 4 rows of data displayed (audio, format, location, etc).

i thinking of using breadcrumbs keep track of user position , below have links in div. oh might mention i'm dealing tv shows. thinking first link format type. once type clicked show seasons related format. show links of different season. when 1 link clicked , see if there collections season (some shows break seasons collections , make difficult since there no default standard). either show disc involved , have them click , show data associated disc or show disc data associated season and/or collection.

i thinking of having div update , show new data after each click.

thoughts? suggestions?

i keep nice , simple without having go web page, don't know if idea possible. thought hidden tabs in bootstrap, don't know if better or expanding panel, again don't know if better either.

you should through ajax. can customise work on click reload divs content example :

$.ajax({         method:"post",         url: 'link_to_php_function.php',         data:'',         success: function(response){                                             $('#yourdiv').html(response);         }); }); 

Comments

Popular posts from this blog

Spring Boot + JPA + Hibernate: Unable to locate persister -

go - Golang: panic: runtime error: invalid memory address or nil pointer dereference using bufio.Scanner -

c - double free or corruption (fasttop) -