Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > Web Development
You last visited: Today at 23:36

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Php undefinierte Variable ?!?

Discussion on Php undefinierte Variable ?!? within the Web Development forum part of the Coders Den category.

Closed Thread
 
Old   #1
 
nicki240's Avatar
 
elite*gold: 0
Join Date: Jan 2011
Posts: 89
Received Thanks: 4
Php undefinierte Variable ?!?

Hey , ich bastele gerade an einem guidtech system ...läuft soweit bis auf das $act nicht defininiert ist ...

Quote:
Notice: Undefined index: act in C:\xampp\htdocs\vbulletin\guid\settings.php on line 4
So wird $act defininiert auch in den anderen php skripten...:
PHP Code:
$act $_GET['act']; 
So eigentlich np , aber aber die get variable act wird auch auf allen anderen Seiten nicht definiert ...

Sie wird aber bei jeder änderung benötig : z.B.

PHP Code:
if($act=="ChangeGUID" && ($changes $total)){
    
$newguid $_POST['GUID'];
    
$newguid2 $_POST['GUID2'];
    
$changesupdate $changes+1;
    if(!empty(
$_POST['GUID'])) {
        if(
strlen($newguid) != 32) {
            exit(
"GUID is too short");
            }
        
$a "wr vip";
        }
    if(!empty(
$_POST['GUID2'])) {
        if(
strlen($newguid2) != 32) {
            exit(
"GUID is too short");
            }
        
$b"public";    
        }
    if(
$changes==0){
        
$timestamp time();
        
$hourstime $timestamp + ($hours 60 60); //86400 = 24 hours
    
}
    if(isset(
$a)) {    
        
mysql_query("UPDATE GUIDTech SET GUID='$newguid', changes='$changesupdate', firstchangetime='$timestamp', hourstime='$hourstime' WHERE user='$username'");
        }
    if(isset(
$b)) {
        
mysql_query("UPDATE GUIDTech SET GUID2='$newguid2', changes='$changesupdate', firstchangetime='$timestamp', hourstime='$hourstime' WHERE user='$username'");
        }

    
//mysql_query("UPDATE GUIDTech SET GUID3='$newguid3' WHERE user='$username'");
    
header("Location: settings.php");
    }
else { 
$act ""; } 
oder :
PHP Code:
if($act==""){
if(
$changes == $total){ 
    
$x $hourstime time();
    if(
$x <= 0) {
        
$changes 0;
        }
    } 
oder aus der admin.php :

PHP Code:
if($act=="guid"){ //Lock Act
$name=$_GET['name'];
$result=mysql_query("SELECT * FROM GUIDTech WHERE user='$name'");
while(
$rows=mysql_fetch_array($result)){ // Start looping table row
$GUID=$rows['GUID'];
$GUID2=$rows['GUID2'];
$GUID3=$rows['GUID3'];
}
?> 
Kann mir jemand helfen wie act defininiert werden könnte ?

Wer mehr Infos brauch melden :P

thx 4 help
nicki240 is offline  
Old 05/17/2012, 19:05   #2
 
Muwbi's Avatar
 
elite*gold: 6
Join Date: Nov 2010
Posts: 480
Received Thanks: 64
Vielleicht erstmal prüfen, ob "$_GET['act']" überhaupt gesetzt ist?

Code:
if(isset($_GET['act'])){
$act = $_GET['act'];
}
Muwbi is offline  
Old 05/17/2012, 20:33   #3
 
nicki240's Avatar
 
elite*gold: 0
Join Date: Jan 2011
Posts: 89
Received Thanks: 4
Quote:
Originally Posted by Muwbi View Post
Vielleicht erstmal prüfen, ob "$_GET['act']" überhaupt gesetzt ist?

Code:
if(isset($_GET['act'])){
$act = $_GET['act'];
}

Das wollte ich verdeutlichen (scheinbar nicht kalr genug...) das sie nicht gesetzt ist und das ist das probelm .

Meine Frage ist eben ob jemand ne idee hat wie die gesetzt werden kann ...
nicki240 is offline  
Old 05/17/2012, 21:05   #4
 
NotEnoughForYou's Avatar
 
elite*gold: 0
Join Date: Jun 2010
Posts: 3,407
Received Thanks: 2,024
das ist der Parameter aus der URL.

Bsp.
Code:
http://www.deineseite.de/index.php?act=seite1
das was nach act steht, ist dann der Inhalt des Suporglobals $_GET.

indem Fall wäre $_GET['act'] gleich seite1
NotEnoughForYou is offline  
Thanks
1 User
Old 05/18/2012, 10:40   #5
 
nicki240's Avatar
 
elite*gold: 0
Join Date: Jan 2011
Posts: 89
Received Thanks: 4
]Danke Damit wäre das Problem so estmal verstanden aber warum kommt da kein button -.- so wie ichs dem code entnommen habe ...


Settings.php

PHP Code:
<?PHP
include("connect.php");
require_once(
"verify.php");
$act $_GET['act'];
$result=mysql_query("SELECT * FROM GUIDTech WHERE user='".$username."'");
$numrows=mysql_num_rows($result);
if(
$numrows!=0){
while(
$rows=mysql_fetch_array($result)){
$locked $rows['locked'];
$GUID $rows['GUID'];
$GUID2 $rows['GUID2'];
$GUID3 $rows['GUID3'];
$GUID4 $rows['GUID4'];
$GUID5 $rows['GUID5'];
$total $rows['total'];
$hours $rows['hours'];
$changes $rows['changes'];
$timestamp $rows['firstchangetime'];
$hourstime $rows['hourstime'];
$id $rows['id'];
}
if (!
$vip) {
    
$GUID4 "";
    
$GUID5 "";
    
$GUID "";
}
if(
$act==""){
if(
$changes == $total){ 
    
$x $hourstime time();
    if(
$x <= 0) {
        
$changes 0;
        }
    }
//mysql_query("UPDATE GUIDTech SET nickname='$nickname' WHERE user='$username'");

//get some extra information
$extra=mysql_query("SELECT * FROM ".$pf."user WHERE username='" $username"'");
while(
$rows5=mysql_fetch_array($extra)){
    
$posts=$rows5['posts'];
    
$ip=$rows5['ipaddress'];
    
$email=$rows5['email'];
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="../favicon.ico" />
<title>GameNoob GuidTech - Settings</title>
<style type="text/css">
<!--
body,td,th {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 9px;
    color: #333333;
    font-weight: bold;
}
body {
    background-color: #e5e5e5;
}
a {
    font-size: 9px;
    color: 323233;
}
a:visited {
    color: #000000;
}
a:hover {
    color: #000000;
}
a:active {
    color: #000000;
}
a:link {
    color: #000000;
}
.style5 {
    color: #666666;
    font-weight: bold;
}
.subbutton
{
    border:1px solid #999;
    background-color: #E7E7E7;
    font-family:Verdana, Arial;
    font-size:10px;
    font-weight:bold;
    padding:2px;
    cursor: pointer;
    cursor: hand;
}
.subbutton2
{
    border:1px solid #999;
    background-color: #E7E7E7;
    font-family:Verdana, Arial;
    font-size:10px;
    font-weight:bold;
    padding:20px;
    cursor: pointer;
    cursor: hand;
}
table.sample {
    border-width: 1px 1px 1px 1px;
    border-spacing: 1px;
    border-style: solid solid solid solid;
    border-color: gray gray gray gray;
    border-collapse: collapse;
}
table.sample th {
    border-width: 1px 1px 1px 1px;
    padding: 2px 2px 2px 2px;
    border-style: solid solid solid solid;
    border-color: gray gray gray gray;
    -moz-border-radius: 0px 0px 0px 0px;
}
table.sample td {
    border-width: 1px 1px 1px 1px;
    padding: 2px 2px 2px 2px;
    border-style: solid solid solid solid;
    border-color: gray gray gray gray;
    -moz-border-radius: 0px 0px 0px 0px;
}
.maintitle {
    text-align: center;
    font-size: 16px;
}
.subbutton1 {    border:1px solid #999;
    background-color: #E7E7E7;
    font-family:Verdana, Arial;
    font-size:10px;
    font-weight:bold;
    padding:2px;
    cursor: pointer;
    cursor: hand;
}
.subbutton3 {    border:1px solid #999;
    background-color: #E7E7E7;
    font-family:Verdana, Arial;
    font-size:10px;
    font-weight:bold;
    padding:2px;
    cursor: pointer;
    cursor: hand;
}
.subbutton4 {    border:1px solid #999;
    background-color: #E7E7E7;
    font-family:Verdana, Arial;
    font-size:10px;
    font-weight:bold;
    padding:2px;
    cursor: pointer;
    cursor: hand;
}
.subbutton5 {    border:1px solid #999;
    background-color: #E7E7E7;
    font-family:Verdana, Arial;
    font-size:10px;
    font-weight:bold;
    padding:2px;
    cursor: pointer;
    cursor: hand;
}
.subbutton6 {    border:1px solid #999;
    background-color: #E7E7E7;
    font-family:Verdana, Arial;
    font-size:10px;
    font-weight:bold;
    padding:2px;
    cursor: pointer;
    cursor: hand;
}
.subbutton7 {    border:1px solid #999;
    background-color: #E7E7E7;
    font-family:Verdana, Arial;
    font-size:10px;
    font-weight:bold;
    padding:2px;
    cursor: pointer;
    cursor: hand;
}
.subbutton8 {    border:1px solid #999;
    background-color: #E7E7E7;
    font-family:Verdana, Arial;
    font-size:10px;
    font-weight:bold;
    padding:2px;
    cursor: pointer;
    cursor: hand;
}
.subbutton9 {    border:1px solid #999;
    background-color: #E7E7E7;
    font-family:Verdana, Arial;
    font-size:10px;
    font-weight:bold;
    padding:2px;
    cursor: pointer;
    cursor: hand;
}
.subbutton10 {    border:1px solid #999;
    background-color: #E7E7E7;
    font-family:Verdana, Arial;
    font-size:10px;
    font-weight:bold;
    padding:2px;
    cursor: pointer;
    cursor: hand;
}
.subbutton91 {border:1px solid #999;
    background-color: #E7E7E7;
    font-family:Verdana, Arial;
    font-size:10px;
    font-weight:bold;
    padding:2px;
    cursor: pointer;
    cursor: hand;
}
.subbutton11 {    border:1px solid #999;
    background-color: #E7E7E7;
    font-family:Verdana, Arial;
    font-size:10px;
    font-weight:bold;
    padding:2px;
    cursor: pointer;
    cursor: hand;
}
.subbutton12 {    border:1px solid #999;
    background-color: #E7E7E7;
    font-family:Verdana, Arial;
    font-size:10px;
    font-weight:bold;
    padding:2px;
    cursor: pointer;
    cursor: hand;
}
.subbutton111 {border:1px solid #999;
    background-color: #E7E7E7;
    font-family:Verdana, Arial;
    font-size:10px;
    font-weight:bold;
    padding:2px;
    cursor: pointer;
    cursor: hand;
}
.subbutton92 {border:1px solid #999;
    background-color: #E7E7E7;
    font-family:Verdana, Arial;
    font-size:10px;
    font-weight:bold;
    padding:2px;
    cursor: pointer;
    cursor: hand;
}
.subbutton911 {border:1px solid #999;
    background-color: #E7E7E7;
    font-family:Verdana, Arial;
    font-size:10px;
    font-weight:bold;
    padding:2px;
    cursor: pointer;
    cursor: hand;
}
-->
</style>
<script type="text/javascript">

var currenttime = 'February 03, 2010 21:51:40' //PHP method of getting server date
var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
var serverdate=new Date(currenttime)

function padlength(what){
var output=(what.toString().length==1)? "0"+what : what
return output
}
function displaytime(){
serverdate.setSeconds(serverdate.getSeconds()+1)
var datestring=montharray[serverdate.getMonth()]+" "+padlength(serverdate.getDate())+", "+serverdate.getFullYear()
var timestring=padlength(serverdate.getHours())+":"+padlength(serverdate.getMinutes())+":"+padlength(serverdate.getSeconds())
document.getElementById("servertime").innerHTML=datestring+" "+timestring
}
window.onload=function(){
setInterval("displaytime()", 1000)
}
</script>
</head>

<body>
<p>&nbsp;</p>
<table width="70%" border="0" align="center" class="sample">
  <tr>
    <td colspan="3"><img src="http://www.elitepvpers.com/forum/images/logo.png" width="883" height="89" /></td>
    <tr>
      <td colspan="3" bgcolor="#DBDCDA">
        <div align="center">
        <span class="style5">GameNoobz GuidTech System <br />
        Hack Releases<br></b> <span id="servertime"></span></p>
        </span></div>     
  <tr>
    <td height="46" colspan="3">Welcome <?php echo $username?> [<a href="logout.php">Logout</a>]</td>
  </tr>
  <tr>
    <td colspan="3" bgcolor="#DBDCDA">GameNoobz User Settings</td>
  </tr>
  <tr>
    <td width="181">Username:</td>
    <td width="607"><?php echo$username?></td>
  </tr>
  <tr>
    <td bgcolor="#DADCDA">User ID:</td>
    <td bgcolor="#DADCDA"><?php echo $id?></td>
  </tr>
  <tr>
    <td>Usergroup:</td>
    <td><?php echo $group?></td>
  </tr>
    <tr>
    <td width="181" bgcolor="#DADCDA">Email:</td>
    <td width="607" bgcolor="#DADCDA"><?php echo $email?></td>
  </tr>
    <tr>
    <td width="181">Post Count:</td>
    <td width="607"><?php echo $posts?></td>
  </tr>
  <tr>
    <td bgcolor="#DADCDA">Guid can be changed?</td>
    <td bgcolor="#DADCDA"><?php if($changes!=$total){
if(
$locked==0){ ?>
      <font color="#009900">Can be Changed!
        <?php }else{ ?>
      </font>Your account GUID is closed Please contact an administrator
      <?php }
}else{ 
$allSecs $hourstime time();
$mins $allSecs 60;
$hour=0;
if(
$mins >= 60) {
    
$mins $mins 60;
    
$hour =1;
    if(
$mins >= 60) {
        
$mins $mins 60;
        
$hour =2;
        }
    }
$mins floor($mins);
$secs $allSecs - ($hour 60 60 $mins 60 );
$time $hour .":" .$mins ":" $secs?>
      <font color="#FF0000">limit reached!</font></td>
    <?php ?>
  </tr>
  <tr>
    <td height="96" colspan="4" bgcolor="#DBDCDA"><p>Guid Section:
      <?php if($vip){ ?>
    </p>
      <table width="100%" border="0">
        <tr>
          <td>VIP GUID:
            <form action="settings.php?act=ChangeGUID" method="post" name="GUIDTech" class="subbutton12">
              <input type="text" name="GUID" value="<?php echo $GUID;?>" size="50" maxlength="32" />
              <?php if($changes!=$total){
              if(
$locked==0){ ?>
              <input type="submit" class="subbutton92" value="Change GUID" />
              <?php }else{ ?>
              <br />
              <span class="style1"><font color="#FF0000">(Disabled)</font></span>
              <?php }
}else{ 
$allSecs $hourstime time();
$mins $allSecs 60;
$hour=0;
if(
$mins >= 60) {
    
$mins $mins 60;
    
$hour =1;
    if(
$mins >= 60) {
        
$mins $mins 60;
        
$hour =2;
        }
    }
$mins floor($mins);
$secs $allSecs - ($hour 60 60 $mins 60 );
$time $hour .":" .$mins ":" $secs?>
              <br />
              Your have reached the limit to change your GUID <br />
              You may have to wait <?php echo $time?> untill 
              your GUID 
              changes
              <?php ?>
            </form>
            <?php ?></td>
        </tr>
        <tr>
  <tr>
    <td colspan="4"><table width="100%" border="0" cellspacing="0" cellpadding="0" height="6">
      <tr>
        <td bgcolor="#DBDCDA" class="tablebotleft"><div align='center' class='copyright'> GameNoobz | Copyright &copy; <a href="http://GameNoobz.Com/Forums/index.php">GameNoobz.Com</a> | GuidTech | 2009 - 2012</div></td>
      </tr>
    </table></td>
  </tr>
</table>
</div>
<?php if($admin){ ?>
<div class="borderwrap">
<br />
    <br />
    <div class="maintitle">
      <p><a href="admin1.php">Log onto Admin Panel</a></p>
</div>
    <div class="tablepad">
      <tr>
</tr>
</table></center>

<?php
}
}else{
//Insert new row for new users
    
$IP $_SERVER['REMOTE_ADDR'];
    
mysql_query("INSERT INTO GUIDTech(IP, user, nickname)VALUES('$IP', '$username','$nickname')");
    
header("Location: settings.php");
}

//Change GUID
if($act=="ChangeGUID" && ($changes $total)){
    
$newguid $_POST['GUID'];
    
$newguid2 $_POST['GUID2'];
    
$changesupdate $changes+1;
    if(!empty(
$_POST['GUID'])) {
        if(
strlen($newguid) != 32) {
            exit(
"GUID is too short");
            }
        
$a "wr vip";
        }
    if(!empty(
$_POST['GUID2'])) {
        if(
strlen($newguid2) != 32) {
            exit(
"GUID is too short");
            }
        
$b"public";    
        }
    if(
$changes==0){
        
$timestamp time();
        
$hourstime $timestamp + ($hours 60 60); //86400 = 24 hours
    
}
    if(isset(
$a)) {    
        
mysql_query("UPDATE GUIDTech SET GUID='$newguid', changes='$changesupdate', firstchangetime='$timestamp', hourstime='$hourstime' WHERE user='$username'");
        }
    if(isset(
$b)) {
        
mysql_query("UPDATE GUIDTech SET GUID2='$newguid2', changes='$changesupdate', firstchangetime='$timestamp', hourstime='$hourstime' WHERE user='$username'");
        }

    
//mysql_query("UPDATE GUIDTech SET GUID3='$newguid3' WHERE user='$username'");
    
header("Location: settings.php");
    }
else { 
$act ""; }
//Update time restrictions
$time=time();
if(
$time >= $hourstime || $ignoretime){
    
mysql_query("UPDATE GUIDTech SET changes='0', firstchangetime='', hourstime='' WHERE user='$username'");

?> <?php ?></p></td>
      </tr>
    </table></td>
  </tr>
</table>
</body>
</html>
Sreen at me :

nicki240 is offline  
Old 05/18/2012, 20:21   #6
 
Mikesch01's Avatar
 
elite*gold: 203
Join Date: Sep 2007
Posts: 732
Received Thanks: 190
Was für einen Button meinst du? Wo soll dieser sich genau in deinem kompletten Code befinden?
Mikesch01 is offline  
Old 05/19/2012, 09:12   #7
 
nicki240's Avatar
 
elite*gold: 0
Join Date: Jan 2011
Posts: 89
Received Thanks: 4
Quote:
Originally Posted by Mikesch01 View Post
Was für einen Button meinst du? Wo soll dieser sich genau in deinem kompletten Code befinden?
Hier :
PHP Code:
<?php ?>
  </tr>
  <tr>
    <td height="96" colspan="4" bgcolor="#DBDCDA"><p>Guid Section:
      <?php if($vip){ ?>
    </p>
      <table width="100%" border="0">
        <tr>
          <td>VIP GUID:
            <form action="settings.php?act=ChangeGUID" method="post" name="GUIDTech" class="subbutton12">
              <input type="text" name="GUID" value="<?php echo $GUID;?>" size="50" maxlength="32" />
              <?php if($changes!=$total){
              if(
$locked==0){ ?>
              <input type="submit" class="subbutton92" value="Change GUID" />
              <?php }else{ ?>
              <br />
              <span class="style1"><font color="#FF0000">(Disabled)</font></span>
              <?php }

Scheint aber mehr nen sql fehler zu sein :/ fällt mir gerade so auf ....
nicki240 is offline  
Old 05/19/2012, 10:46   #8
 
elite*gold: 0
Join Date: Sep 2007
Posts: 266
Received Thanks: 32
du willst act abfangen das nicht gesetzt ist mhmm schon komisch?! wenn du durch eine form auf die gewünschte seite kommst... dann mach im form ein hidden feld gib ein namen und eine value ein und frag danach ab so z.B

<input type="hidden" name="act" value="act" "/>

wenn du die form dann per Post abschickst dann muss du es auch mit post abfangen und nicht mit get das aber klar sein muss ... wenn ich etwas falsches sage, dann hab ich dein problem nich wirklich verstanden am besten besser erklären

und ich bin mir sicher das der button damit nichts zu tun hat...


Ps. oben hast du eine mysql abfrage die du so hast select * from
will damit sagen das dass eine dicgerheitslücke ist...

und ich glaub wenn die neue php version rauskommt soll nur noch myqli funktionieren besser ist du steigst auf dies um
playa18 is offline  
Thanks
1 User
Old 05/19/2012, 13:07   #9
 
elite*gold: 0
Join Date: Oct 2008
Posts: 319
Received Thanks: 88
Quote:
Ps. oben hast du eine mysql abfrage die du so hast select * from
will damit sagen das dass eine dicgerheitslücke ist...
Alles zu selektieren ist keine Sicherheitslücke sondern lediglich performancefressend.

Quote:
und ich glaub wenn die neue php version rauskommt soll nur noch myqli funktionieren besser ist du steigst auf dies um
Das ist falsch, die neue PHP Version ist schon seit mehreren Wochen drausen, PHP wird mysql immer unterstützen. Was hätte es für einen Sinn eine Datenbankschnittstelle zu entfernen? Millionen von Websites müssten umsteigen, das würde keiner mitmachen. Es gab auch nirgentwo irgentwelche Patchnotes die auf soetwas hinweisen. Woher hast du den quatsch? Funktionen die entfernt werden werden in PHP schon üblicherweise mehrere Versionen bevor sie entfernt werden als veraltet gekennzeichnet und geben dir einen Fehler aus, das ist nicht der Fall und wird auch nie der Fall sein.

Und zum Thread, wenn du PHP als Template Engine nutzt, dann verwende doch bitte auch den Template Syntax, andernfalls ist dein Code sehr unleserlich

PHP Code:
<? if (): ?>
 .. html content
<? else: ?>
 .. html 
<? endif; ?>
Da man sich nun auch entschlossen hat den short-echo tag zu behalten, und nun sogar standartmäßig bei jeder installation aktiviert ist kannst du auch anstelle von
<?php echo $var ?> einfach <?= $var ?> verwenden.

Und zu deinem Problem, wie wärs wenn du dir mal mit var_dump die variablen $changes und $total
ausgeben lässt?
Fratyr is offline  
Thanks
1 User
Old 05/19/2012, 14:19   #10
 
elite*gold: 0
Join Date: Sep 2007
Posts: 266
Received Thanks: 32
Post

Quote:
Originally Posted by Fratyr View Post
Alles zu selektieren ist keine Sicherheitslücke sondern lediglich performancefressend.


Das ist falsch, die neue PHP Version ist schon seit mehreren Wochen drausen, PHP wird mysql immer unterstützen. Was hätte es für einen Sinn eine Datenbankschnittstelle zu entfernen? Millionen von Websites müssten umsteigen, das würde keiner mitmachen. Es gab auch nirgentwo irgentwelche Patchnotes die auf soetwas hinweisen. Woher hast du den quatsch? Funktionen die entfernt werden werden in PHP schon üblicherweise mehrere Versionen bevor sie entfernt werden als veraltet gekennzeichnet und geben dir einen Fehler aus, das ist nicht der Fall und wird auch nie der Fall sein.

Und zum Thread, wenn du PHP als Template Engine nutzt, dann verwende doch bitte auch den Template Syntax, andernfalls ist dein Code sehr unleserlich

PHP Code:
<? if (): ?>
 .. html content
<? else: ?>
 .. html 
<? endif; ?>
Da man sich nun auch entschlossen hat den short-echo tag zu behalten, und nun sogar standartmäßig bei jeder installation aktiviert ist kannst du auch anstelle von
<?php echo $var ?> einfach <?= $var ?> verwenden.

Und zu deinem Problem, wie wärs wenn du dir mal mit var_dump die variablen $changes und $total
ausgeben lässt?
hatte vom iphone aus geschrieben und war bisschen faul dazu sorry ist due php version 6 schon draußen??? ich weiß davon nichts... hab mir den quatsch nich selber ausgedacht das steht in sämtlichen php foren :S

ps. und wenn du meinst das alles selektieren keine sicherheitslücke ist kannst du dein kram so programmieren... nur ich bin vom beruf fachinformatiker anwendungsentwicklung und webentwicklung und ich weiß was ich sag...
playa18 is offline  
Old 05/19/2012, 14:39   #11
 
NotEnoughForYou's Avatar
 
elite*gold: 0
Join Date: Jun 2010
Posts: 3,407
Received Thanks: 2,024
Quote:
Originally Posted by playa18 View Post
hatte vom iphone aus geschrieben und war bisschen faul dazu sorry ist due php version 6 schon draußen??? ich weiß davon nichts... hab mir den quatsch nich selber ausgedacht das steht in sämtlichen php foren :S

ps. und wenn du meinst das alles selektieren keine sicherheitslücke ist kannst du dein kram so programmieren... nur ich bin vom beruf fachinformatiker anwendungsentwicklung und webentwicklung und ich weiß was ich sag...
Na dann sag doch mal bitte wo da eine Sicherheitslücke sein soll, wenn man alle Spalten selektiert. Btw. es gibt keinen Fachinformatiker für "Webentwicklung". Und nachdem was ich von dir gesehen habe, zweifel ich da grad etwas daran.
NotEnoughForYou is offline  
Old 05/19/2012, 15:16   #12
 
elite*gold: 0
Join Date: Sep 2007
Posts: 266
Received Thanks: 32
Quote:
Originally Posted by NotEnoughForYou View Post
Na dann sag doch mal bitte wo da eine Sicherheitslücke sein soll, wenn man alle Spalten selektiert. Btw. es gibt keinen Fachinformatiker für "Webentwicklung". Und nachdem was ich von dir gesehen habe, zweifel ich da grad etwas daran.
Es gibt fachinformatiker anwendungsentwicklung die nur C++ oder c programmieren oder andere sprachen programmieren außer PHP html java ajax und das ganze...

und wenn man php html usw programmiert dann is es halt eben webentwicklung kann dir gerne mein eigenes CMS system zeigen... dann wirste nich mehr bezweifeln...
playa18 is offline  
Old 05/19/2012, 15:19   #13
 
NotEnoughForYou's Avatar
 
elite*gold: 0
Join Date: Jun 2010
Posts: 3,407
Received Thanks: 2,024
Quote:
Originally Posted by playa18 View Post
Es gibt fachinformatiker anwendungsentwicklung die nur C++ oder c programmieren oder andere sprachen programmieren außer PHP html java ajax und das ganze...

und wenn man php html usw programmiert dann is es halt eben webentwicklung kann dir gerne mein eigenes CMS system zeigen... dann wirste nich mehr bezweifeln...
Die Aussage html usw. programmieren reicht mir schon um zu sehen, dass du keinesfalls Fachinformatiker bist. HTML ist eine Auszeichnungssprache und keine Programmiersprache. Ergo programmiert man kein HTML. Ob PHP als tatsächliche Programmiersprache zählt, da gibt es geteilte Meinungen. Aber HTML keineswegs.
NotEnoughForYou is offline  
Old 05/19/2012, 15:24   #14
 
elite*gold: 0
Join Date: Sep 2007
Posts: 266
Received Thanks: 32
looooooooooooool wenn du meinst... ich kann dir schnell was über teamviewer programmieren... du hast so ein großes maul... aber veurteilst andere menschen... obwohl du keine ahnung hast


ASO und schon klar... für PHP brauchst ja kein HTML ne? man man man bist du arm... du programmiert auch eine schnittstelle ohne PHP oder... HTML ist keine Programmiersprache genau... nur HTML braucht man für PHP auch... ICh frag dich was eine form ist? was ist das... kein HTML sondern C oder man man man

ASO und wenn du nur ein bisschen Ahnung hättest würdest du hier kein schwachfug posten...
playa18 is offline  
Old 05/19/2012, 15:29   #15
 
NotEnoughForYou's Avatar
 
elite*gold: 0
Join Date: Jun 2010
Posts: 3,407
Received Thanks: 2,024
Na wenn du meinst. Kannst mir ja gerne mal per PN dein "CMS" zeigen, dann sehen wir ja wie weit deine Kenntnisse reichen ( wobei man die ja schon in anderen Threads gesehen hat, und da waren sie ja nicht sehr überzeugend ).
NotEnoughForYou is offline  
Closed Thread


Similar Threads Similar Threads
Variable
06/10/2011 - General Coding - 5 Replies
Moin, Nur eine kleine frage uber ne c# variable also: Ich hab mehere form's in meine programm und will eine string deklarieren fuer das ganze programm. Ich hab es so gemacht : public string user = "Username"
Cost of accessing a casted variable vs. assigning the casted variable? (C#)
01/05/2011 - CO2 Programming - 5 Replies
I know that in unmanaged C++, casting is at compile-time, so it's better to avoid the assignment and simply access it for all instances. However, in C#, I have no idea since I'm pretty new to it.
Variable ?!
11/27/2010 - AutoIt - 14 Replies
Huhu E*PvP :) Ich habe mal wieder eine frage :D.. mir wurde ja schon öfters gesacht das ich meinen source "Besser gestalten soll". Also dachte ich mir mhm ok..! und ich wollte wissen wie ..am also ..og >_<
Überprüfen ob Variable Eine Variable ist
10/16/2010 - AutoIt - 26 Replies
Hey leute ich wollte fragen ob/wie man überprüfen kann ob eine Variable eine Variable ist z.b. so $k = 1 $i = $k if $i = VARIABLE Then msgbox(0,'$i ist eine variable!!','') endif PS:Wp releast man nochma TuT (z.b. für metin2??)
How do I add a variable
08/21/2009 - CO2 Private Server - 4 Replies
Couldn't find a guide when I searched. I want to make a variable so it will check how many times the player has already used unknown man. I know how to use the variable, but just don't know how to make it. Oh yea this is LOTF



All times are GMT +2. The time now is 23:36.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.