Jump to content

mandukar

Members
  • Posts

    58
  • Joined

  • Last visited

    Never

Everything posted by mandukar

  1. dude stop playing around, it was a serious question.
  2. erm ok, then whats the script? lol.
  3. Hi there I was just wondering is there a way I can make a summary of latest threads from a smf forum on a weeklyupdate.php page? say about 4-5 latlest threads?
  4. can someone make or point me to a tutorial that basiclly instead of making loads of contact forms for indvidual staff members, make one simple form and then have a drop down menu, and once that person is selected in the drop down menu, the content within the form is sent to that staff member. any help will be most greatful
  5. many thanks will keep you updated
  6. hi i'm trying to make a web page where someone can fill in a form and the information can be then sent to a database. can someone tell me how I can go about doing this? heres the forum I wish to use basiclly its char name: Char Gender: background: thanks in advanced
  7. i've had a read of that cron job thing and they gave an example do I put <? and ?> at the start n end of that script or just leave it as it is and save it as a txt document?
  8. so if i used would that mean i'd have to view the page? that this script is on? or would it work on its own? and thanks for that cron job link, i'll have a look at that too
  9. do you know where I can get a script that does that then please?
  10. hi I am trying to write up a script that when the timer gets to a time e.g. 12:00 it automaticly runs a page called reset.php basiclly my question is how would I get the script to run my reset.php page here is the script I galthered so fare. any help will be greatful
  11. cuz its in my reset.php script, what the script above basiclly should do is automaticly activate reset.php
  12. Oh sorry it activates the reset.php page of my site, which then resets some data in the database. and it is supposed to work every 2hrs and 24hrs but nothing happens.
  13. no Exofusion is a web based game thats open source. same people that made Gamer fusion
  14. Would that happen to be using Exofusion Scripts? I am having a problem with using cron jobs myself, I am interested, what are you using in your SQL table for your cron timer jobs?
  15. nothing happens... I forward it to reset.php and it should carry out job's that I have in the reset.php document.
  16. hi can someone do me a favor and see whats wrong with this script. i'm trying to get it to reset people's accounts every few hrs however it doesn't seem to want to work.. theres one for 2hrs and another 24 hrs.. [tt] <?php // Enter the number of hours below. $hours1 = 2; $hours2 = 24; //Hours calculation $hours1 = $hours1*3600; $hours2 = $hours2*3600; $cron_timer = mysql_fetch_array(mysql_query ("select * from cron_timer where id=1")); // Timer for 24 hours if ($stat[lpv] > $cron_timer[lpv]) { include("reset.php"); mysql_query("update cron_timer set lpv=lpv+$hours1 where id=1"); } //End of 24 hour timer $cron_timer = mysql_fetch_array(mysql_query ("select * from cron_timer where id=2")); // Timer for 2 hour timer if ($stat[lpv] > $cron_timer [lpv]) { include("reset.php"); mysql_query("update cron_timer set lpv=lpv+$hours2 where id=2"); } //End of 2 hour timer ?> [/tt]
  17. i'm not sure, then, sorry... thats how I do my entrys.
×
×
  • 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.