Posting-Frequenz: 14µHz
Momentan arbeite ich noch daran, wie ich prüfen kann ob die aufgerufene ID existiert
empfehle ich den Cast-Operator, weil:
(int) in der Ausführung schneller ist
<?php
$start = microtime(true);
for($i=0; $i<1000000; $i++) {
$foobar = 'a';
$foobar = (int)$foobar; //bzw. 1*$foobar
}
echo (microtime(true)-$start);
?>
<?
$action = $_GET['action'];
$einlesen = mysql_query("SELECT ID FROM content WHERE ID='.intval($action).'");
if(mysql_num_rows($einlesen)==1) $yes = "1";
else $no = "1";
if($action == "0"){
$sql = 'SELECT * from content WHERE id= 0';
$id_query = mysql_query($sql) or die("Anfrage nicht erfolgreich");
while ($con = mysql_fetch_array($id_query)){
echo"<b><u>".$con["titel"]."
</u></b>";
echo$con["content"];
include "./includes/0.inc.php";
}}
else if($yes =="1"){
$action = $_GET['action'];
$sql = 'SELECT * from content WHERE id='.intval($action).'';
$id_query = mysql_query($sql) or die("Anfrage nicht erfolgreich");
while ($con = mysql_fetch_array($id_query)){
echo"<b><u>".$con["titel"]."
</u></b>";
echo$con["content"];
include "./includes/".intval($action['file']).".inc.php";
}}
else if($no =="1"){
$action = $_GET['action'];
$sql = 'SELECT * from content WHERE id=9';
$id_query = mysql_query($sql) or die("Anfrage nicht erfolgreich");
while ($con = mysql_fetch_array($id_query)){
echo"<b><u>".$con["titel"]."
</u></b>";
echo$con["content"];
include "./includes/9.inc.php";
}}
?>
<?
$action = (int)$_GET["action"];
$einlesen = mysql_query("SELECT * FROM content WHERE ID=$action");
if(mysql_num_rows($einlesen)>0)
{
$con = mysql_fetch_array($einlesen);
}
else
{
$con = mysql_fetch_array(mysql_query("SELECT * from content WHERE ID=9"));
}
echo "<b><u>".$con["titel"]."</u></b>";
echo $con["content"];
include "includes/$action.inc.php";
?>
<?
$action = (int)$_GET["action"];
$einlesen = mysql_query("SELECT * FROM content WHERE ID=$action");
if(mysql_num_rows($einlesen)>0)
{
$con = mysql_fetch_array($einlesen);
echo "<b><u>".$con["titel"]."</u></b>";
echo $con["content"];
include "includes/$action.inc.php";
}
else
{
$con = mysql_fetch_array(mysql_query("SELECT * from content WHERE ID=9"));
echo "<b><u>".$con["titel"]."</u></b>";
echo $con["content"];
include "includes/9.inc.php";
}
?>
<?
$action = (int)$_GET["action"];
$einlesen = mysql_query("SELECT * FROM content WHERE ID=$action");
if(mysql_num_rows($einlesen)>0)
{
$con = mysql_fetch_array($einlesen);
}
else
{
$action=9;
$con = mysql_fetch_array(mysql_query("SELECT * from content WHERE ID=$action"));
}
echo "<b><u>".$con["titel"]."</u></b>";
echo $con["content"];
if(file_exists("includes/$action.inc.php"))
{
include "includes/$action.inc.php";
}
?>
Willkommen auf PSD-Tutorials.de
In unseren Foren vernetzt du dich mit anderen Personen, um dich rund um die Themen Fotografie, Grafik, Gestaltung, Bildbearbeitung und 3D auszutauschen. Außerdem schalten wir für dich regelmäßig kostenlose Inhalte frei. Liebe Grüße senden dir die PSD-Gründer Stefan und Matthias Petri aus Waren an der Müritz. Hier erfährst du mehr über uns.
Nächster neuer Gratisinhalt
Statistik des Forums