Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Log In Redirection

Asked Modified Viewed 1,660 times
A
afoster
A
  • Senior Member, joined since
  • Contributed 725 posts on the community forums.
  • Started 128 threads in the forums
  • Started this discussions
asked
Senior Member

I have a table that contains information that a member has signed up for. Is it possible that the member can see that information (pulled from mysql table) once he has logged in. It would be set as a link that only the applicable player can see once he has logged in. I assume it would have to be tied into the player ID number but I don't have enough PHP or mySQL knowledge to set this up. Any assistance would be much appreciated.
0 replies

3 posts

A
Ankur
A
Ankur 10
Hi! Its me, Ankur Thakur! smile
  • Veteran Member, joined since
  • Contributed 1,277 posts on the community forums.
  • Started 60 threads in the forums
answered
Veteran Member

Just create a custom page with the PHP Coding for displaying the data from the table and give the Link on your site.

And if you want to make it for members only, then use the if (iMEMBER) condition for the code you want to display.

For example :

[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]if (iMEMBER) {
echo "You all Code which you want to display for member !";
}
else {
echo "any sample text which you want to display if the user is not logged in or to guests !";
}[/syntaxhighlighter]
0 replies
P
PolarFox
P
  • Veteran Member, joined since
  • Contributed 1,633 posts on the community forums.
  • Started 29 threads in the forums
answered
Veteran Member

— 2 years later —
R
rafi
R
rafi 10
  • Junior Member, joined since
  • Contributed 11 posts on the community forums.
  • Started 4 threads in the forums
answered
Junior Member

Hi....
if we want certain members like members id =190 how does it work?
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 3 posts
  • Votes 0 votes
  • Topic users 4 members

4 participants

A
A
  • Senior Member, joined since
  • Contributed 725 posts on the community forums.
  • Started 128 threads in the forums
  • Started this discussions
P
P
  • Veteran Member, joined since
  • Contributed 1,633 posts on the community forums.
  • Started 29 threads in the forums
A
A
Ankur 10
Hi! Its me, Ankur Thakur! smile
  • Veteran Member, joined since
  • Contributed 1,277 posts on the community forums.
  • Started 60 threads in the forums
R
R
rafi 10
  • Junior Member, joined since
  • Contributed 11 posts on the community forums.
  • Started 4 threads in the forums

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet