rpg game

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    rpg game

    hello, try these tables missing
    ibwf_smleft and ibwf_smright
    the file is rpg.php
    PHP Code:
    $smleft mysql_query("SELECT id, sm FROM ibwf_smleft ORDER by RAND() LIMIT 1");
    while(
    $smlefts=mysql_fetch_array($smleft))
    {
    $leftsm $smlefts[1];
    }
    $smright mysql_query("SELECT id, sm FROM ibwf_smright ORDER by RAND() LIMIT 1");
    while(
    $smrights=mysql_fetch_array($smright))
    {
    $rightsm $smrights[1];
    }
    echo 
    "<img src=\"$leftsm\" alt=\"\"/><img src=\"$rightsm\" alt=\"\"/><br/>"
    riderz it will. ..

    #2
    SELECT id, sm FROM ibwf_smleft ORDER by RAND()
    -> Means that is a table named ibwf with:
    id int auto_increment
    sm varchar

    SELECT id, sm FROM ibwf_smright ORDER by RAND()
    same thing
    <?php unlink('World/Europe/Romania.country'); ?>

    Comment


      #3
      thank you ionut

      Comment

      Working...
      X