Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: Include bedos
Parašė kiskiss· 2007 Lap. 2 01:11:49
#1
index.php<?php
// Make a MySQL Connection
mysql_connect("dd", "asdffa", "vava") or die(mysql_error());
mysql_select_db("dvavava") or die(mysql_error());
// Get all the data from the "example" table
$result = mysql_query("SELECT * FROM vsvsvs")
or die(mysql_error());
echo "<table border='1'>";
echo "<tr> <th>Name</th> <th>Age</th> </tr>";
// keeps getting the next row until there are no more to get
while($row = mysql_fetch_array( $result )) {
// Print out the contents of each row into a table
echo "<tr><td>";
echo $row['emailas];
echo "</td><td>";
echo $row['numeris'];
echo "</td></tr>";
}
echo "</table>";
?>
Atidarius ši index.php pamatai emaila ir skaičiu, tačiau aš niekaip nesugalvoju kaip reikia ši dalyka includinti i
php faila?
meginau include komandas bet nepadejo, o jei meginu visa scripta ikišti meta klaida. Gal kas turit sumanymu?
Redagavo ozzWANTED· 2007 Lap. 2 01:11:35
Parašė Rytis· 2007 Lap. 2 10:11:33
#2
o čia į fusion meti?
Jei ta pati duom. bazė, tada panaikink jungimasį. Jei ne, tada
mysql_close();
// Make a MySQL Connection
mysql_connect("dd", "asdffa", "vava") or die(mysql_error());
mysql_select_db("dvavava") or die(mysql_error());
// Get all the data from the "example" table
$result = mysql_query("SELECT * FROM vsvsvs")
or die(mysql_error());
echo "<table border='1'>";
echo "<tr> <th>Name</th> <th>Age</th> </tr>";
// keeps getting the next row until there are no more to get
while($row = mysql_fetch_array( $result )) {
// Print out the contents of each row into a table
echo "<tr><td>";
echo $row['emailas];
echo "</td><td>";
echo $row['numeris'];
echo "</td></tr>";
}
echo "</table>";
Redagavo Rytis· 2007 Lap. 2 13:11:03
Parašė kiskiss· 2007 Lap. 2 10:11:10
#3
O dabar dar 1 dalyko reiketu. Niekaip nerandu scripto kuris rodytu 2 tekstus. pirmas tekstas butu jeigu ateitu iš tam tikro ip (puslapio) o jei ne tai rodytu antra teksta. If else žodžiu. Reikia IP tikrinimo
Reikia kad jeigu ateina ne iš tam tikro tinklapio rodytu 2 teksta o jeigu ateina tai iš 1 kad rodytu
Redagavo kiskiss· 2007 Lap. 2 11:11:21
Parašė Rytis· 2007 Lap. 2 13:11:49
#4
Nesupratau, ar tau IP ar referer tikrinimo reikia :D
IP:
if ($_SERVER['REMOTE_ADDR'] == "127.0.0.1")
{
echo"vienas tekstas";
}
else
{
echo"kitastekstas";
}
referer:
Pasižiūrėk:
http://www.google.com/search?q=g...eferer+php
Gal ką prisitaikysi, nes kiek aš testavau, man neveikia tas referer rodymas :(
Nebent padaryti
www.tavo.puslapis.lt/?ref=is_kazkur
$ref = $_GET['ref'];
if($ref == "koks_nors_ref")
{
echo"vienas tekstas";
}
else
{
echo"kitastekstas";
}
Redagavo Rytis· 2007 Lap. 2 13:11:23
Parašė kiskiss· 2007 Lap. 2 16:11:46
#5
1 pavizdys rodo tam tikram IP informacija tačiau man reikia kad rodytu informacija tiem kas atėjo iš tam tikro ip adreso ar puslapio.
Pavyzdžiui jei markas ateina iš google.com jo tekstas Neteisingai, o jeigu ateina iš nasa.com tada rašytu Atėjai teisingai. Tikiuosi supratai