Jump to content
php.lv forumi

Vajag kodu


Snaip3Rs

Recommended Posts

Lūdzu palīdzat man ar vienu kodu! Es te dabūju nelielu scriptu, bet tajā nestrādā viena funkcija, ka nedot gājienus pēc katras stundas!

Te būs skripts tikai nezinu kas ir nepareizs un kāpēc viņš neupdeitojās uz db!

<?php
include "../connect.php";
$getturns="Update km_users set numturns=numturns+10";
$getturns2=mysql_query($getturns) or die("Could not get turns");
?>

Link to comment
Share on other sites

Man vajag izveidot simpl skriptu kas uz db tabula users row gajieni katru dienu plkstens 00 uploudo 30 gajienus! Un viss!

 

mysql_query(ja pulkstens ir 00:00, tad iedodam visiem lietotājiem pa 30 punktiem.) or die ("Sagadījās gļukiņš: ".mysql_error());

Link to comment
Share on other sites

Robert, Tu domā, ka katru vakaru plkst.00:00 kād jūzeris palaidīs to scriptu?

 

Tātad kā jau te viens minēja - lieto CRON ( priekš nix sistēmām ) vai arī task scheduler ( windows'am). Šīs programmas `iedarbinās` attiecīgo skriptu noteiktajā laikā.

Izveido jaunu php vailu, teiksim 123456.php ar sava skripta saturu

<?php
include "../connect.php";
$getturns="Update km_users set numturns=numturns+10";
$getturns2=mysql_query($getturns) or die("Could not get turns");
?>

 

tālāk jau norādi CRON'am vai task scheduler'am, lai katru dienu tas `iedarbina` 123456.php skriptu.

Link to comment
Share on other sites

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.

Loading...
×
×
  • Create New...