|
|
|
||||
|
Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
![]() |
|
|||||||
| Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
|
Thread Tools |
|
|
#1 |
|
Confirmed User
Join Date: Jan 2007
Posts: 811
|
need some html help with AUTOGALLERY SQL
trying to get about 6 or 7 images going across in a row then starting a new row but it doesnt seem to work.... here are the parameters...
<table align="center" width="800"> <%CATEGORIES AMOUNT All HTML <tr><td align=center><a href="##Page##"><img src=http://www.solo-girlz.com/##Name##.jpg border=0 width=90 height=120><br>##Name##</a></td> ORDER Name %> </tr></table> or also if i do this below, then it just starts over with the first name again.... <table align="center" width="800"><tr> <%CATEGORIES AMOUNT 6 HTML <td align=center><a href="##Page##"><img src=http://www.solo-girlz.com/##Name##.jpg border=0 width=90 height=120><br>##Name##</a></td> ORDER Name %> </tr></table> by the way the site is solo-girlz.com
__________________
I like Boobs. |
|
|
|
|
|
#2 |
|
Confirmed User
Join Date: Jan 2007
Posts: 811
|
__________________
I like Boobs. |
|
|
|
|
|
#3 |
|
Confirmed User
Join Date: Nov 2004
Location: scv
Posts: 2,299
|
Take a look at the examples that come with it... should be able to get it working in no time.
|
|
|
|
|
|
#4 |
|
Confirmed User
Join Date: Jan 2007
Posts: 811
|
well since the site is pretty much custom made there is no "category" examples. I am good with autogallery SQL, been using it for about 2 years. Im just stumped here.
__________________
I like Boobs. |
|
|
|
|
|
#5 |
|
Confirmed User
Join Date: Jan 2007
Posts: 811
|
p.s. ill pay someone who can help
__________________
I like Boobs. |
|
|
|
|
|
#6 |
|
Confirmed User
Industry Role:
Join Date: Nov 2003
Location: Olongapo City, Philippines
Posts: 4,618
|
Hit me up tomorrow and I'll help you out. You need an INSERT statement to add the row tags and you should be using the GALLERIES directive, and some other things.. something more like:
Code:
<br />
<table width="600" border="0" align="center" class="thumbtable" cellpadding="3" cellspacing="3">
<tr valign="top">
<td colspan="4" class="header">Nude Art Hall Of Fame</td>
</tr>
<tr>
<%GALLERIES
HASTHUMB 1
TYPE Permanent
FORMAT Any
CATEGORY Mixed
AMOUNT 48
SPONSOR Any
HTML Thumb2
GLOBALDUPES False
PAGEDUPES False
ORDER (Clicks/Build_Counter) DESC
REORDER (Clicks/Build_Counter) DESC
GETNEW False
FILL False
DESCREQ False
MAXAGE 3
INSERT
{
LOCATION +4
HTML </tr><tr valign="top">
}
%>
</tr>
</table>
|
|
|
|
|
|
#7 |
|
Confirmed User
Industry Role:
Join Date: Nov 2003
Location: Olongapo City, Philippines
Posts: 4,618
|
CATEGORIES simply lists the categories you have defined, not image gallery thumbs
|
|
|
|
|
|
#8 |
|
Confirmed User
Join Date: Jan 2007
Posts: 811
|
Hey, but i dont want galleries to show up. I want categories to show up with galleries on each category page. Anyhoo, ill hit you up
__________________
I like Boobs. |
|
|
|
|
|
#9 |
|
Confirmed User
Industry Role:
Join Date: Nov 2003
Location: Olongapo City, Philippines
Posts: 4,618
|
Sorry - misunderstood what you wanted.
Was fun working with you on ICQ - here's the final code in case anyone else wants it. Code:
<table width="800" align="center">
<tr>
<%CATEGORIES
AMOUNT All
HTML <td><a href="##Page##"><img src="images/##Name##.jpg">##Name##</a></td>
ORDER Name
INSERT
{
LOCATION +4
HTML </tr><tr>
}
%>
</tr>
</table>
|
|
|
|