Jump to content

cdog5000

Members
  • Posts

    37
  • Joined

  • Last visited

    Never

Everything posted by cdog5000

  1. Yes, But i have also tried echo and it doesnt work
  2. Well, Thats the stuff on line 43... I will get all of it: $stylevar[htmldoctype] <html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]"> <head> $headinclude <title>$vboptions[bbtitle] - $vboptions[rsacctrade_Name]</title> </head> <body> $header $navbar <if condition="$vboptions[rsacctrader_enabled] == 1"> <div class="forbg"> <div class="forl"> <div class="forr"> <div class="fortitel">Runemarkets Account Sales </div> </div> </div> </div> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td class="alt1" width="33%"> <center><a href="runescapeshop.php">Runemarkets Shop Home</a></center> </td> <td class="alt1" width="34%"> <center><a href="runescapeshop.php?action=trade">Runemarkets Account Trades</a></center> </td> <td class="alt1" width="33%"> <center><b>Runemarkets Account Sales</b></center> </td> </tr> <tr> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td class="alt1" align="center"> <if condition="$vboptions[rsacctrader_sales_enabled] == 0"> <h3>Market Sales are disabled, sorry for the inconvenience!</h3> <else /> <?php mysql_select_db("13048_forums") or die(mysql_error()); $query = "SELECT * FROM `vbulletin_rs_accounts_sales` WHERE 1"; $result = mysql_query($query) or die(mysql_error()); while($row = mysql_fetch_array($result)){ print $row['username']; } ?> </if> </td> </tr> </table> </tr> </table> <div class="c_border_bottombg"> <div class="c_border_bottom_left"> <div class="c_border_bottom-right"> </div> </div> </div> <br /> </if> $footer
  3. Ok, I am running this query $stylevar[htmldoctype] <html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]"> <head> $headinclude <title>$vboptions[bbtitle] - $vboptions[rsacctrade_Name]</title> </head> <body> $header $navbar <if condition="$vboptions[rsacctrader_enabled] == 1"> <div class="forbg"> <div class="forl"> <div class="forr"> <div class="fortitel">Runemarkets Account Sales </div> </div> </div> </div> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td class="alt1" width="33%"> <center><a href="runescapeshop.php">Runemarkets Shop Home</a></center> </td> <td class="alt1" width="34%"> <center><a href="runescapeshop.php?action=trade">Runemarkets Account Trades</a></center> </td> <td class="alt1" width="33%"> <center><b>Runemarkets Account Sales</b></center> </td> </tr> <tr> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td class="alt1" align="center"> <if condition="$vboptions[rsacctrader_sales_enabled] == 0"> <h3>Market Sales are disabled, sorry for the inconvenience!</h3> <else /> <?php mysql_select_db("13048_forums") or die(mysql_error()); $query = "SELECT * FROM `vbulletin_rs_accounts_sales` WHERE 1"; $result = mysql_query($query) or die(mysql_error()); while($row = mysql_fetch_array($result)){ print $row['username']; } ?> </if> </td> </tr> </table> </tr> </table> <div class="c_border_bottombg"> <div class="c_border_bottom_left"> <div class="c_border_bottom-right"> </div> </div> </div> <br /> </if> $footer , but I always get Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /hosted/domains/r/u/runemarkets.com/public_html/forums/includes/adminfunctions_template.php(3929) : eval()'d code on line 43
  4. I have an image(attached) but how would i put a textfield in the middle? [attachment deleted by admin]
  5. Can you send me your css file? Please
  6. OK, So i have this image (attached) how do i put a text field in the middle of it? [attachment deleted by admin]
  7. ok... it is not creating the file....
  8. ok... i tried doing: fopen('http://new-era.impsoft.info/auth/la.php','x+'); and it is working atm so i will try this
  9. if (!$ncvx) $ncustid = 0; else $ncustid = $_GET['ncvx']; try that
  10. i have chmod'd my stuff and it still say's that....
  11. Warning: mkdir() [function.mkdir]: Permission denied in /home/neweraim/public_html/auth/la.php on line 10 Warning: fopen(chat/cdog5000900.txt) [function.fopen]: failed to open stream: No such file or directory in /home/neweraim/public_html/auth/la.php on line 11
  12. Warning: fopen(chat/cdog5000900.txt) [function.fopen]: failed to open stream: No such file or directory in /home/neweraim/public_html/auth/userRegister.php on line 37
  13. Warning: fopen(./chat/cdog50006.txt) [function.fopen]: failed to open stream: No such file or directory in /home/neweraim/public_html/auth/userRegister.php on line 37 and fopen('./chat/'.$username . '.txt','x+'); and yes it its a directory
  14. fopen('./chat/'.$username . '.txt','x+');
  15. how would i make it make the file? i get this error trying it... Warning: fopen(./chat/cdog50006.txt) [function.fopen]: failed to open stream: No such file or directory in /home/neweraim/public_html/auth/userRegister.php on line 37
  16. what function could i use to make a new file in a directory?
  17. ok... i found out it was a simple syntax error in my username
  18. Field Type Null Default minerMinutesLeft int(11) No 1
  19. no... it isn't working and i even made sure that it was working...and it's a type of int....
  20. ok.. i have this here: mysql_query("UPDATE authTable SET minerMinutesLeft=minerMinutesLeft+10000 WHERE username = '$username'"); but it only set's the minutes to 10000... i need some help plz
  21. say i have a phrase like ("hi,how ya doin?,good day") i want an array of that where each pharse is seperated by a , so in this case the array would contain hi how ya doin? good day how would i do that ??????
  22. i need a fuunction that'll count down by day's,hours,minutes,and seconds!!!
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.