Register | Login
Views: 19364387
Main | Memberlist | Active users | ACS | Commons | Calendar | Online users
Ranks | FAQ | Color Chart | Photo album | IRC Chat
11-02-05 12:59 PM
Acmlm's Board - I2 Archive - - Posts by Mercury
Pages: 1 2 3 4 5
User Post
Mercury

Shyguy
Level: 16

Posts: 1/88
EXP: 18132
For next: 2124

Since: 07-08-04
From: Hihihi.

Since last post: 1 day
Last activity: 1 day
Posted on 07-08-04 03:30 AM, in Table screwing up PHP Link
I have this script where you can click following button:

<INPUT TYPE=SUBMIT CLASS=SUBMIT NAME=submit3 VALUE=\"Run Away\">

When you click that, this happens:

if($submit3){
mysql_query("UPDATE users SET btemp = 0,btemp2 = 0, btemp3 = 0 WHERE id = '$loguserid' " ) or exit("Error 'flee @ btemp'" );
header("location: explore.php" );

This was working fine, you went to explore.php and could see the content.
But than I added this in the PHP page:

$inf=mysql_fetch_array(mysql_query("SELECT credits,lvl, exp, expnext FROM users WHERE id='$loguserid' LIMIT 1" ));
print "<table border=0 cellpadding=0 cellspacing=0 width=100% height=15><tr><td valign=bottom width=20%><b>Level:</b> $inf[lvl]</td><td valign=bottom width=50% align=center><b>Experience:</b> $inf[exp]/$inf[expnext]</td><td valign=bottom width=30% align=right><b>Credits:</b> $inf[credits]</td></tr></table>";

And it stopped working, it just showed a blank page.
I found out the problem is because of the table, because if I leave out the table and just print the level, exp etc. it works .

What's wrong?



(edited by Mercury on 07-07-04 06:31 PM)
Mercury

Shyguy
Level: 16

Posts: 2/88
EXP: 18132
For next: 2124

Since: 07-08-04
From: Hihihi.

Since last post: 1 day
Last activity: 1 day
Posted on 07-08-04 03:36 AM, in acmlmboard buttons Link
Like some already said, you have to do this with CSS.

For example, for buttons:

submit{
border:#000000 solid 1px;font-size:10px;font-family:Verdana;color:#000000;background-color:#FFFFFF; width=75px;}
Mercury

Shyguy
Level: 16

Posts: 3/88
EXP: 18132
For next: 2124

Since: 07-08-04
From: Hihihi.

Since last post: 1 day
Last activity: 1 day
Posted on 07-08-04 03:42 AM, in Board bug Link
Well, this isn't really a bug, but I noticed this at my AcmlmBoard.

After posting a new reply, you should normally be taken automatically to the latest post, but this isn't happening (at least not with me).

This is because the <a name="number of post"> tag is between a <tr> and <td> tag.
Just move that tag inside the td tag.

Has this not been noticed all this time ???
Mercury

Shyguy
Level: 16

Posts: 4/88
EXP: 18132
For next: 2124

Since: 07-08-04
From: Hihihi.

Since last post: 1 day
Last activity: 1 day
Posted on 07-08-04 03:46 AM, in AcmlmBoard Powered Website Link
It isn't hard, I have a full Acmlm Powered site.
I've made an online browser game, using the same database which holds the board data.
You just need to add some extra tables (if necessary) .
Mercury

Shyguy
Level: 16

Posts: 5/88
EXP: 18132
For next: 2124

Since: 07-08-04
From: Hihihi.

Since last post: 1 day
Last activity: 1 day
Posted on 07-08-04 03:56 AM, in wolf lady Link
Looks nice, especially the head.
The right arm doesn't look right .
Mercury

Shyguy
Level: 16

Posts: 6/88
EXP: 18132
For next: 2124

Since: 07-08-04
From: Hihihi.

Since last post: 1 day
Last activity: 1 day
Posted on 07-08-04 04:43 PM, in Board bug Link
Nope, this isn't on my board (I fixed it there ).

When I reply, it just takes me to the top of the thread, not the latest post.
But if this isn't the case with anyone else, this topic can be closed I guess .

Btw, I use Firefox.
Firefox uses XHTML, right?
Maybe most of you guys use IE, and as we all know IE has other standards .


(edited by Mercury on 07-08-04 07:47 AM)
Mercury

Shyguy
Level: 16

Posts: 7/88
EXP: 18132
For next: 2124

Since: 07-08-04
From: Hihihi.

Since last post: 1 day
Last activity: 1 day
Posted on 07-08-04 04:51 PM, in Board bug Link
Yeah, strange indeed .
In fact, I didn't notice it at my board, but one of the members, and I've been using AcmlmBoard for a couple of years now .

But it's easy to fix as I pointed out in my first post.
Mercury

Shyguy
Level: 16

Posts: 8/88
EXP: 18132
For next: 2124

Since: 07-08-04
From: Hihihi.

Since last post: 1 day
Last activity: 1 day
Posted on 07-08-04 05:05 PM, in Board bug Link
I was just pointing it out .
Mercury

Shyguy
Level: 16

Posts: 9/88
EXP: 18132
For next: 2124

Since: 07-08-04
From: Hihihi.

Since last post: 1 day
Last activity: 1 day
Posted on 07-08-04 10:09 PM, in Board bug Link
Originally posted by NightHawk
Mozilla doesn't automatically scroll down either.


Of course it doesn't, the code isn't a standard.
And why does IE scroll down? Because IE is full of bugs itself (hello! it's Microsoft!), and it doesn't follow standards.

So I don't really get why you link to IE6 Yoghurt Duck, this isn't the fault of the browser .
Mercury

Shyguy
Level: 16

Posts: 10/88
EXP: 18132
For next: 2124

Since: 07-08-04
From: Hihihi.

Since last post: 1 day
Last activity: 1 day
Posted on 07-08-04 10:23 PM, in Board bug Link
Nope, it's at function.php with the different post layouts .

Just move the <a name> tag inside the TD tag.
Mercury

Shyguy
Level: 16

Posts: 11/88
EXP: 18132
For next: 2124

Since: 07-08-04
From: Hihihi.

Since last post: 1 day
Last activity: 1 day
Posted on 07-09-04 01:55 AM, in Board bug Link
Well, you have to do this with all postlayouts, there are about 6.

Example for postlayout 3:

if($postlayout==3){

$postdate=date("m-d-y h:i A",$post[date]+$tzoff);
$poststext="Posts: ";
$postnum="$post[num]/";
$posttotal=$user[posts];
$postlist="
<a name=$post[id]>$tcellbg rowspan=2><a name=$post[id]>$fonttag
<a href=profile.php?id=$u><font $namecolor>$user[name]</font></a><br>
$smallfont Posts: $postnum$posttotal</td>
$tcellbg width=80%><table cellspacing=0 cellpadding=2 width=100%><td><nobr>$smallfont Posted on $postdate</td><td width=255><nobr>$smallfont$quote$edit$ip</table><tr>
$tcellbg height=60>$fonttag$post[headtext]$post[text]$post[signtext]</td>
";
}

As you can see, the "a name" tag (red) should be inside the TD tag (green).
Mercury

Shyguy
Level: 16

Posts: 12/88
EXP: 18132
For next: 2124

Since: 07-08-04
From: Hihihi.

Since last post: 1 day
Last activity: 1 day
Posted on 07-11-04 03:11 AM, in Table screwing up PHP Link
There is nothing wrong with the fetching .
I always do it like that, never have any problems.

And it's the table indeed, because when I leave out the table, it works fine.
I'll try and add the /'s .
Mercury

Shyguy
Level: 16

Posts: 13/88
EXP: 18132
For next: 2124

Since: 07-08-04
From: Hihihi.

Since last post: 1 day
Last activity: 1 day
Posted on 07-11-04 03:13 AM, in A program for acmlmboard =) Link
Looks interesting, for PC users .
Mercury

Shyguy
Level: 16

Posts: 14/88
EXP: 18132
For next: 2124

Since: 07-08-04
From: Hihihi.

Since last post: 1 day
Last activity: 1 day
Posted on 07-20-04 02:29 AM, in Board bug Link
Although I don't really like the "loving me" part, my pleasure .
Mercury

Shyguy
Level: 16

Posts: 15/88
EXP: 18132
For next: 2124

Since: 07-08-04
From: Hihihi.

Since last post: 1 day
Last activity: 1 day
Posted on 07-25-04 09:11 PM, in Which OS do you use and how do you find it? Link
Mac OS X

Guess what?
No viruses, adaware/spyware, crashes, or other windows-only problems, never have to re-instal it etc.
When I turn it on, I can ACTUALLY do what I want, fun huh?

Oh, how I envy Windows-based PC-users ... NOT !


(edited by Mercury on 07-25-04 12:12 PM)
(edited by Mercury on 07-25-04 12:20 PM)
Mercury

Shyguy
Level: 16

Posts: 16/88
EXP: 18132
For next: 2124

Since: 07-08-04
From: Hihihi.

Since last post: 1 day
Last activity: 1 day
Posted on 07-25-04 09:30 PM, in Star Wars Episode 3 Title! Link
It turned out to be:

Episode 3: Revenge Of The Sith



Can't wait for it !
Mercury

Shyguy
Level: 16

Posts: 17/88
EXP: 18132
For next: 2124

Since: 07-08-04
From: Hihihi.

Since last post: 1 day
Last activity: 1 day
Posted on 07-25-04 10:08 PM, in Star Wars Episode 3 Title! Link
I'm not lying, they announced it at Comic Con .

Also, on the official site:
http://www.starwars.com/episode-iii/bts/production/news20040724.html


(edited by Mercury on 07-25-04 01:09 PM)
Mercury

Shyguy
Level: 16

Posts: 18/88
EXP: 18132
For next: 2124

Since: 07-08-04
From: Hihihi.

Since last post: 1 day
Last activity: 1 day
Posted on 07-25-04 10:13 PM, in Which OS do you use and how do you find it? Link
LOL, you've seen the Classic Mac crash?
Isn't that normal, that older computers still crash, geez.

Adware/Spyware on a Mac?
Hah!

And of course there might be a few virusses for Mac, but compared to Windows, none.

(Sorry, you didn't burst my bubble, as you put it so nicely )
Mercury

Shyguy
Level: 16

Posts: 19/88
EXP: 18132
For next: 2124

Since: 07-08-04
From: Hihihi.

Since last post: 1 day
Last activity: 1 day
Posted on 07-26-04 01:44 AM, in Which OS do you use and how do you find it? Link
LOL, another example of how ignorant (read: retarted) PC-users are, all the good games are also on Mac.

Nice try, but grow up .


(edited by Mercury on 07-25-04 04:47 PM)
Mercury

Shyguy
Level: 16

Posts: 20/88
EXP: 18132
For next: 2124

Since: 07-08-04
From: Hihihi.

Since last post: 1 day
Last activity: 1 day
Posted on 07-26-04 09:32 PM, in Star Wars Episode 3 Title! Link
There are a few documentary's on SW.com.
Also, if you gonna buy the Classic Trilogy DVD Box, there will be a doc on from Episode 3.
Pages: 1 2 3 4 5
Acmlm's Board - I2 Archive - - Posts by Mercury


ABII


AcmlmBoard vl.ol (11-01-05)
© 2000-2005 Acmlm, Emuz, et al



Page rendered in 0.013 seconds.