Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>You should post your code <strong>right here</strong> next time.</p> <p>A quick look at your code gives me the idea that the gallery is populated by the following piece of code:</p> <pre><code>$gl_type = Array("","1","2","3","4"); // change type here $glm_name = Array("","14 November '2013","23 November '2013","15 December '2013","29 December '2013"); // modify name here **respectively** $gl_date = Array("","2013","2013","2013"); // modify date here **respectively** $gl_pic = Array("","2013-12-13_001_1024x768.jpg","2013-12-13_001_1024x768.jpg","2013-12-13_001_1024x768.jpg"); // modify images here **respectively** </code></pre> <p>Also, it looks like you can modify albums along this line:</p> <pre><code>switch($i){ case "1": gl_pic = Array("","2013-12-13_001_1024x768.jpg","2013-12-13_002_1024x768.jpg","2013-12-13_003_1024x768.jpg","2013-12-13_004_1024x768.jpg","2013-12-13_005_1024x768.jpg","2013-12-13_006_1024x768.jpg","2013-12-13_007_1024x768.jpg","2013-12-13_008_1024x768.jpg"); break; case "2": $gl_pic = Array("","2013-12-13_001_1024x768.jpg","2013-12-13_002_1024x768.jpg","2013-12-13_003_1024x768.jpg","2013-12-13_004_1024x768.jpg"); break; case "3": $gl_pic = Array("","2013-12-13_001_1024x768.jpg","2013-12-13_002_1024x768.jpg","2013-12-13_003_1024x768.jpg","2013-12-13_004_1024x768.jpg","2013-12-13_005_1024x768.jpg","2013-12-13_006_1024x768.jpg","2013-12-13_007_1024x768.jpg","2013-12-13_008_1024x768.jpg","2013-12-13_009_1024x768.jpg","2013-12-13_010_1024x768.jpg","2013-12-13_011_1024x768.jpg","2013-12-13_012_1024x768.jpg","2013-12-13_013_1024x768.jpg"); break; case "4": $gl_pic = Array("","2013-12-13_001_1024x768.jpg","2013-12-13_002_1024x768.jpg","2013-12-13_003_1024x768.jpg","2013-12-13_004_1024x768.jpg","2013-12-13_005_1024x768.jpg","2013-12-13_006_1024x768.jpg","2013-12-13_007_1024x768.jpg","2013-12-13_008_1024x768.jpg"); break; default: $gl_pic = Array("","2013-12-13_001_1024x768.jpg","2013-12-13_002_1024x768.jpg","2013-12-13_003_1024x768.jpg","2013-12-13_004_1024x768.jpg","2013-12-13_005_1024x768.jpg","2013-12-13_006_1024x768.jpg","2013-12-13_007_1024x768.jpg","2013-12-13_008_1024x768.jpg"); break; } </code></pre> <p>Go figure the rest...</p>
 

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