Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/257.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/84.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php Xampp不识别_Php_Html_Xampp - Fatal编程技术网

Php Xampp不识别

Php Xampp不识别,php,html,xampp,Php,Html,Xampp,今天我需要对我的网站做一些修改,所以我把整个网站下载到我的电脑上,修改了IP地址和登录详细信息,网站开始工作了 但是,当我进入一个页面时,我按下按钮,什么也没发生,同样的按钮在网络主机上工作 这是我在运行的webhost上使用的代码: if($serverSettings['itemshop']) { if(isset($_GET['p']) && checkInt($_GET['p'])) { $sqlCmdS="SELECT * FROM ".SQL_HP

今天我需要对我的网站做一些修改,所以我把整个网站下载到我的电脑上,修改了IP地址和登录详细信息,网站开始工作了

但是,当我进入一个页面时,我按下按钮,什么也没发生,同样的按钮在网络主机上工作

这是我在运行的webhost上使用的代码:

if($serverSettings['itemshop']) {
    if(isset($_GET['p']) && checkInt($_GET['p'])) {
      $sqlCmdS="SELECT * FROM ".SQL_HP_DB.".is_items WHERE kategorie_id='".$_GET['p']."' AND anzeigen='J' ORDER BY preis ASC, vnum ASC";
    }
    else {
      $sqlCmdS="SELECT * FROM ".SQL_HP_DB.".is_items WHERE anzeigen='J' ORDER BY preis DESC, vnum DESC";
    }

  ?>
  <div id="isleft">
    <h2>Categorías</h2><br/>
    <ul>
      <?PHP
        $sqlCmd = "SELECT * FROM ".SQL_HP_DB.".is_kategorien WHERE anzeigen='J' ORDER BY id ASC;";
        $sqlQry = mysql_query($sqlCmd,$sqlHp);
        while($getKats = mysql_fetch_object($sqlQry)) {
          echo'<li><a href="./itemshop-'.$getKats->id.'.htm">'.$getKats->titel.'</a></li>';
        }
      ?>
    </ul>
  </div>
  <div id="isright">
<table>
    <?PHP
      $sqlQry = mysql_query($sqlCmdS,$sqlHp);
      $counter = 1;
      while ($getItems = mysql_fetch_object($sqlQry)) {
        $aktItem = compareItems($getItems->vnum);
        $aktItem1 = compareItems($getItems->id);
        $nome = compareItems($getItems->nome);
        $itemStufe = (checkInt($aktItem['stufe'])) ? "+".$aktItem['stufe'] : '';

        //$itemStufe1 = (checkInt($aktItem1['stufe'])) ? "+".$aktItem1['stufe'] : '';
        ?>
        <tr>
          <th colspan="2" class="topLine"><?= $nome['item'] ?> (<b><?= $getItems->count ?>x</b>) (<b><?= $getItems->preis ?> Coins</b>)</th>
        </tr>
        <tr>
          <td class="isImg">
            <?PHP
              if(!empty($getItems->bild)) echo'<img src="./is_img/'.$getItems->bild.'.png" title="'.$aktItem['item'].'" alt="'.$aktItem['item'].'"/>';
            ?>
          </td>
          <td class="tdunkel"><?= $getItems->beschreibung ?></td>
        </tr>
        <tr>
          <td colspan="2" class="isBuy">
            <select id ="escolha<? echo $counter ?>">
            <option value="">Escolhe...</option>
            <option value="eu">Para mim</option>
            <option value="outro">Para outro jogador</option>
            </select><button onclick="confirmacao(escolha<? echo $counter; ?>,<? echo $getItems->id ?>,<? echo $getItems->preis; ?>)" title="Vais gastar <? echo $getItems->preis; ?> moedas">Comprar</button>
          </td>
        </tr>


        <?PHP
        $counter++;
      }
    ?>
      </table>
  </div>
<script>
function confirmacao(escolha,id,preco)
{
    //var val = escolhida.options[escolhida.selectedIndex].value;

    switch(escolha.options[escolha.selectedIndex].value)
    {
        case "eu":
            function confirma_compra(id,preco)
            {
                var ask = window.confirm("Queres mesmo comprar?\nIrão ser removidas "+preco+" moedas da tua conta!");

                if (ask)
                {
                    document.location.href = './is_buy-'+id+'.htm';

                }
            }

            return confirma_compra(id,preco)

            break;

        case "outro":
                document.location.href = './is_buy_outro-'+id+'.htm';
            break;

        case "":
            alert("Tens de selecionar uma opção!");

            break;

        default:
            alert("test");

    }

    return false;
}
</script>
按钮的工具提示上会出现这种情况:


提前感谢

正如我在您的屏幕截图上看到的,他们正在向您展示

问题是谁的PHP新版本不赞成使用短标签。您需要交替更改所有标记