xips Posted July 30, 2011 Report Share Posted July 30, 2011 ola pessoal estou com dificuldade em resolver um erro na minha pagina. Ela esta funcionando normalmente só que no fundo dela fica assim como esta na imagem que coloqueiprint do erroNo codigo fonte a funçao esta deste jeito :function change_rights($seite, $spieler) { $r = "<form action=\'member.php\' method=\'post\' accept-charset=\'utf-8\'>"; $r.= "<input type=\'hidden\' name=\'spielerid\' value=\'".$spieler."\'>"; $r.= "<input type=\'hidden\' name=\'seite\' value=\'".$seite."\'>"; //IE hat Probleme mit Bildern in Submitbuttons... //Mit IE7 kein Problem? if (!ereg("MSIE",$_SERVER['HTTP_USER_AGENT'])) { $r.= change_rights_ff($seite, $spieler); } else { $r.= change_rights_ie($seite, $spieler); }Se alguém souber como resolvo isso ficarei muito grato. $r.= "</form>"; return $r; } Quote Link to comment Share on other sites More sharing options...
0 Willian Gustavo Veiga Posted July 30, 2011 Report Share Posted July 30, 2011 ereg foi marcada como obsoleta. Utilize a função preg_match.Um abraço. Quote Link to comment Share on other sites More sharing options...
0 xips Posted July 30, 2011 Author Report Share Posted July 30, 2011 No casao ficaria assim a minha funçaofunction change_rights($seite, $spieler){$r = "<form action=\'member.php\' method=\'post\' accept-charset=\'utf-8\'>";$r.= "<input type=\'hidden\' name=\'spielerid\' value=\'".$spieler."\'>";$r.= "<input type=\'hidden\' name=\'seite\' value=\'".$seite."\'>";//IE hat Probleme mit Bildern in Submitbuttons...//Mit IE7 kein Problem?if (!preg_match("MSIE",$_SERVER['HTTP_USER_AGENT'])) {$r.= change_rights_ff($seite, $spieler);} else {$r.= change_rights_ie($seite, $spieler);}Se alguém souber como resolvo isso ficarei muito grato.$r.= "</form>";return $r;} Quote Link to comment Share on other sites More sharing options...
0 Willian Gustavo Veiga Posted August 1, 2011 Report Share Posted August 1, 2011 Você testou esse código? Se a resposta for afirmativa, apareceu algum erro?Um abraço. Quote Link to comment Share on other sites More sharing options...
0 xips Posted August 1, 2011 Author Report Share Posted August 1, 2011 testei a pagina funciona normalmente só que aparece esse erro:Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in C:\xampp\htdocs\troop_tool\member.php on line 109 Quote Link to comment Share on other sites More sharing options...
0 Willian Gustavo Veiga Posted August 2, 2011 Report Share Posted August 2, 2011 Tente assim:if (!preg_match("/MSIE/",$_SERVER['HTTP_USER_AGENT'])) {Se ainda assim não funcionar não esqueça de postar o erro.Um abraço. Quote Link to comment Share on other sites More sharing options...
0 xips Posted August 2, 2011 Author Report Share Posted August 2, 2011 AEEEEEEEEEEE. Willian Gustavo muito obrigado funcionou aki valeu mesmo podem fechar o tópico problema resolvido Quote Link to comment Share on other sites More sharing options...
Question
xips
ola pessoal estou com dificuldade em resolver um erro na minha pagina.
Ela esta funcionando normalmente só que no fundo dela fica assim como esta na imagem que coloquei
print do erro
No codigo fonte a funçao esta deste jeito :
function change_rights($seite, $spieler)
{
$r = "<form action=\'member.php\' method=\'post\' accept-charset=\'utf-8\'>";
$r.= "<input type=\'hidden\' name=\'spielerid\' value=\'".$spieler."\'>";
$r.= "<input type=\'hidden\' name=\'seite\' value=\'".$seite."\'>";
//IE hat Probleme mit Bildern in Submitbuttons...
//Mit IE7 kein Problem?
if (!ereg("MSIE",$_SERVER['HTTP_USER_AGENT'])) {
$r.= change_rights_ff($seite, $spieler);
} else {
$r.= change_rights_ie($seite, $spieler);
}
Se alguém souber como resolvo isso ficarei muito grato.
$r.= "</form>";
return $r;
}
Link to comment
Share on other sites
6 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.