[example]{TEXT}[/example] <a href="http://www.mylinkhere.com"><img border="0" width="640" alt="{TEXT}" src="http://www.myimage.com/12.jpg" height="480"></a> This works fine when I tested it... (Except that the Image is not located at the l...
There are two things that have really helped donations on my site. One is the top ten list and the other is listing a goal and purpose for the donation. You can see mine at: http://cwbullet.org It is located at the bottom right corner. It even has a graph showing how close we are to the goal. Chuck...
It dosent seem like it would be that hard to do this, for the sign up...
And the Auto Delete the account if the user is not active would not be that hard as well if you could obtain the code to Delete a users E-mail via cPanel like you did with the Signup...
You can try this: case 'new_gender_male': $sql = "SELECT * FROM " . USERS_TABLE . " WHERE user_gender = 1 AND user_active = 1 ORDER BY user_regdate ASC LIMIT 1"; break; and case 'new_gender_female': $sql = "SELECT * FROM " . USERS_TABLE . " WHERE user_gender = 2 AN...
You can try something like this in the usercp_viewprofile.php file: if ( !empty($profiledata['user_maidenname']) ) { $profile_maidenname = '<tr><td> ....... What ever you want the Profile to view </td></tr>'; } else { $profile_maidenname = ''; } Then look for: 'POSTS' => $profiledata['user_posts'], ...
I'm just trying to grab some Data from one Table and place it in another one as long as 1 field from each table matchs... This way I can display that Info on on the left hand of the screen on their Posts... I know how to display this if the Info is in the phpbb_users table but not in a differant Tab...
Automatically copy over the 'skill' and 'name' fields from phpbb_special table over to phpbb_users table where the field 'name' in phpbb_special table matchs the field 'username' in phpbb_users table Let me know if you need any more information. Thanks a lot Here is what I have, but it dosent work. ...
Grab the skill and name fields and move them to another place on the SAME database? But only if the 2 yyy fields match will the fields be copied over to the other placeholder for that user ? So that means I would need the script to first match the yyy field for the stats and in another section of th...
Does anyone have a Simple script to take a field from a different Non phpBB Database and have it insert the info into the phpBB_users on a different Database ? I'm trying to get Data from a Stats Database and put the Users Stats into phpBB_user Table... I already have everything set up to put the va...