Jump to content
php.lv forumi

Ehh... k-kāda kļūda skriptā ko neizprotu


savejais

Recommended Posts

Lūk kods:

<?php
if($_POST["meklis"] == 'cls') {
header("Location: index.php");
}
if($_POST["meklis"] == 'dir') {
header("Location: dir.php");
}
if($_POST["meklis"] == 'par.exe') {
header("Location: par.php");
}
if($_POST["meklis"] == 'palidziba.bat') {
header("Location: help.php");
}
if($_POST["meklis"] == 'urlas.exe') {
header("Location: urlas.php');
}
?>

Es mēģinu uztaisīt lapu MS-DOS 5.0 izskatā. Katrā lapā ir vieta kur ierakstīt piemēram C:\ dir, nu protams C:\ nav jāievada... Nu lūk, kad mēģinu ietestēt lapu tad parādas - Unexpected $ in C:\Server\meklis.php on line 17. Uz 17 rindiņas nav neviena $. Nesaprotu!

Link to comment
Share on other sites

savejais--> apskati ljoti ruupiigi priekspeedeejo (15) koda rindinju ;)

Sveeti ieteiktu izmantot redaktoru kur var redzeet vai ir aizvertas pedinjas/ iekavas utt....

P.S. pats lietoju Notepad++ ....

Edited by Grey_Wolf
Link to comment
Share on other sites

Nu, tad jau laikam tomēr šitā:

<?php
switch($_POST['meklis']) {
case 'cls':
	header("Location: index.php");
	break;
case 'dir':
	header("Location: dir.php");
	break;
case 'par.exe':
	header("Location: par.php");
	break;
case 'palidziba.bat':
	header("Location: help.php");
	break;
case 'urlas.exe':
	header("Location: urlas.php");
	break;
}
?>

Link to comment
Share on other sites

<?php

switch($_POST['meklis']) {

case 'cls':

header("Location: index.php");

break;

case 'dir':

header("Location: dir.php");

break;

case 'par.exe':

header("Location: par.php");

break;

case 'palidziba.bat':

header("Location: help.php");

break;

case 'urlas.exe':

header("Location: urlas.php");

break;

}

?>

Priekškam tik garu?

Link to comment
Share on other sites

×
×
  • Create New...