Log in

View Full Version : Where is "$post" defined?


sonichero
05-29-2007, 04:05 AM
I want to get rid of the automated "<img src="...." when i place $post[rank] somewhere. Ive been looking for awhile and i cant find it anywhere.

Need this for a sweet mod...

harmor19
05-29-2007, 11:38 AM
You can use preg_replace to remove the HTML tags.

sonichero
05-29-2007, 09:18 PM
do i do that in the PHP or HTML?

how would that code go to get rid of the stuff surrounding the rank url?

sonichero
05-31-2007, 03:55 AM
still need help

harmor19
05-31-2007, 04:13 AM
look it up.

sonichero
05-31-2007, 08:28 PM
gee...thanks?

preg_replace doesnt help unless i know the PHP file in which $post[rank] is defined.

Brad
06-01-2007, 02:53 AM
I remember having trouble with this. :)

Check out the file /includes/class_postbit.php. The functions "construct_postbit();" and "process_registered_user();" should aid you well in your quest. ;)

Look forward to seeing your hack! :)

sonichero
06-01-2007, 05:20 AM
okay, this is pissing me off...

All im tryin to do is find $post[rank] defined in a PHP so i can remove the <img src="" alt="" border="" /> so i can put it in the background of a table.

Thanks to you guys above for your help. Sadly, it didnt work.

harmor19
06-01-2007, 06:06 AM
I guess your avatar suits you.

You can query the "rank" table with a left join on the user table.
Then you can check the post count of the user and return the rank image where the user's post count is greater or equal to the minimum number of posts for the rank.

sonichero
06-01-2007, 06:14 AM
...but what on earth does that have to do with removing the <img src="blah" alt="" border="" /> that comes with the $post[rank] code

What i want is to have <table background="www.site.com/forums/$post[rank]"> so it comes out as

|www.site.com/forums/images/ranks/evil.gif|

instead of

|www.site.com/forums/<img src="images/ranks/evil.gif" alt="" border="" />>

harmor19
06-01-2007, 07:12 AM
What pages will you be showing this one?

BTW it's in "functions_ranks.php".

sonichero
06-01-2007, 01:09 PM
yeah, i tried functions_rank.php but it doesnt work. I removed the HTML and it still came out as the same thing. This is for the postbit and profile pages.

I guess ill have to keep trying...

sonichero
06-04-2007, 01:04 AM
bump...

...still need help. Im looking for the code so that when i place $post[rank] somewhere it comes out as "images/ranks/blah.gif"