Jump to content
MakeWebGames

[mccode] Fixed Advertisements for mccode v1.1


Guest Anonymous

Recommended Posts

Guest Anonymous

<?php
include "mysql.php";
global $c;
if($_SESSION['ad']== 0 && !$_POST['username'] && !$_POST['password'])
{
print "
Want to see your advertisement?

Want to see the Statistics so far?

Login with the details.


Username :

Password :


";
}
if($_POST['username'] && $_POST['password'])
{
$uq=mysql_query("SELECT * FROM ads WHERE adLOGIN='{$_POST['username']}' AND adPASS='{$_POST['password']}'",$c) or die(mysql_error());
if(mysql_num_rows($uq)== 0)
{
die("
Invalid Username/Password.

>Retry Login

");
}
else
{
$s=mysql_fetch_array($uq);
$_SESSION['ad']=1;
$_SESSION['adid']=$s['adID'];
print << You have successfully logged in

EOF;
} }
if($_SESSION['ad']== 1)
{
global $c;
$is=mysql_query("SELECT * FROM ads WHERE adID='{$_SESSION['adid']}'",$c) or die(mysql_error());
$r=mysql_fetch_array($is);
print "
You have logged in as your Advertisement.

Your Advertisement URL : {$r['adURL']}

Your Advertisement Image : {$r[

Your Advertisement ID : {$r['adID']}

Your Advertisement Clicks : {$r['adCLICKS']}

Your Advertisement Views : {$r['adVIEWS']}

Thankyou for logging in to check your advertisement.

Logout
";
}
?>
Link to comment
Share on other sites

  • 2 weeks later...
  • 4 months later...
  • 5 months later...
  • 4 weeks later...
  • 9 months later...

Re: [mccode] Fixed Advertisements for mccode v1.1

I am testing right now

Results:Decent (Here's why)

No link to make a advertisement

And i couldent find no where in there where the link like on some v1 and v2 stuff it will say like ad.php?action=makeadd or something i didn't find that in nothing up there .... :? someone help me wid that

and

We'll from beside's all that i haven't yet found a error in there so it works just no way to make one lol

--------------------------------

if($ir['userid'] != 1)

{

die("Disabled for you.");

}

--------------------

^^ does that mean that if ur id[1] you can't do it or does it mean that if ur not id 1 you cant do it the ! confused me i know about the other ones its just that one always get's me :-) :?

Link to comment
Share on other sites

Re: [mccode] Fixed Advertisements for mccode v1.1

even with the obvious missing pointers, it seems to me that it lacks one or two main functions :| i manage to make a "work around" though it keeps not wanting to do the trick, as main directions on to the install are also not that obvious as they seem to be :S, so if anyone out there was able to pull this out, well, i don't ask for the code, only a pointer to the solution as it is not obvious for me :)

Link to comment
Share on other sites

  • 2 months later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...